bilisim2010
Altın Üye
- Katılım
- 2 Nisan 2011
- Mesajlar
- 133
- Excel Vers. ve Dili
- office 2007 tr
- Altın Üyelik Bitiş Tarihi
- 17-12-2025
merhaba aşağıdaki formül ile dosyayı seçip textbox1 e yolunu yazdırıyorum. istediğim textbox2 ye 1 yazdığımda sayfa1 i seçsin 2 yazarsam sayfa2 yi seçsin.
Private Sub CommandButton1_Click()
Dim fso As Object, ad As Object
ChDir ("C:\")
dosya = Application.GetOpenFilename(filefilter:="Tüm Dosyalar (*.*),*.*", Title:="Bir dosya seçiniz")
'If dosya = False Then Exit Sub
Set fso = CreateObject("Scripting.FileSystemObject")
Set ad = fso.Getfile(dosya)
TextBox3.Value = ad.Name
TextBox2.Value = 1
TextBox1.Text = Left(dosya, Len(dosya) - (Len(ad.Name) + 1))
End Sub
Private Sub CommandButton1_Click()
Dim fso As Object, ad As Object
ChDir ("C:\")
dosya = Application.GetOpenFilename(filefilter:="Tüm Dosyalar (*.*),*.*", Title:="Bir dosya seçiniz")
'If dosya = False Then Exit Sub
Set fso = CreateObject("Scripting.FileSystemObject")
Set ad = fso.Getfile(dosya)
TextBox3.Value = ad.Name
TextBox2.Value = 1
TextBox1.Text = Left(dosya, Len(dosya) - (Len(ad.Name) + 1))
End Sub