Haluk
Özel Üye
- Katılım
- 7 Temmuz 2004
- Mesajlar
- 12,398
- Excel Vers. ve Dili
- 64 Bit 2010 - İngilizce
+
Google Sheets
+
JScript
DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
"Sorum dosyanın içinde..." sanırım.![]()
Sub Test()
Open "c:\users\zeki\desktop\myFile.txt:1" For Output As #1
Open "c:\users\zeki\desktop\myFile.txt:2" For Output As #2
Open "c:\users\zeki\desktop\myFile.txt:3" For Output As #3
Print #1, "File-1"
Print #2, "File-2"
Print #3, "File-3"
Close #1
Close #2
Close #3
Shell "notepad c:\users\zeki\desktop\myFile.txt:1"
Shell "notepad c:\users\zeki\desktop\myFile.txt:2"
Shell "notepad c:\users\zeki\desktop\myFile.txt:3"
End Sub