- Katılım
- 19 Mart 2008
- Mesajlar
- 2,154
- Excel Vers. ve Dili
-
Office 2007 Enterprise
Türkçe
Arkadaşlar Fuat Şirin arkadaşın bir çalışmasında Kırmızılı yeri kendimize göre uyarlamak istedim. Comboboxta resimler listelenmiyor.Ne gibi yol izlemek lazım.
Kod orjinal sayfası
http://www.excel.web.tr/f48/userforma-resim-caoyrma-t67487/post367294.html
Kod:
Private Sub ComboBox1_Change()
Dim kls As String
kls = "[COLOR=red]C:\ff\[/COLOR]"
With Application.FileSearch
.NewSearch
.LookIn = kls
.Filename = ComboBox1 & ".jpg"
.SearchSubFolders = True
.Execute
If .FoundFiles.Count > 0 Then
Image1.Picture = LoadPicture(.FoundFiles(1))
End If
End With
End Sub
http://www.excel.web.tr/f48/userforma-resim-caoyrma-t67487/post367294.html