Option Compare Database
'-D-O-S-Y-A--İ-Ş-L-E-M-L-E-R-İ-1-
' Metin dosyası oluşturmak için kullanılan komutlar
Sub dosyaya_yaz()
Open "d:\sınıflar.txt" For Output As #1
For k = 9 To 12
For a = 0 To 255
sınıfadı = k & Chr(a)
Write #1, sınıfadı
Next a
Next k
Close #1
End Sub
'-D-O-S-Y-A--İ-Ş-L-E-M-L-E-R-İ-2-
Sub dosyayı_temizle()
Open "d:\sınıflar.txt" For Output As #1
Close #1
End Sub
Yorumlar
Yorum Gönder