- Katılım
- 1 Mart 2005
- Mesajlar
- 22,254
- Excel Vers. ve Dili
-
Win7 Home Basic TR 64 Bit
Ofis-2010-TR 32 Bit
Alternatif.
Aşağıdaki kodları deneyiniz.
Aşağıdaki kodları deneyiniz.
Kod:
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
If Intersect(Target, [a1:a10]) Is Nothing Then Exit Sub
If Target = "" Then Exit Sub
Cancel = True
ChDir (ThisWorkbook.Path & "\xxx")
dosya = Application.GetOpenFilename(filefilter:="Excel Dosyaları(*.xls),(*.xls)", Title:="Excel Dosyasını Seçiniz. evrengizlen@hotmail.com")
If dosya = False Then Exit Sub
CreateObject("Shell.Application").Open dosya
End Sub