- Katılım
- 18 Ocak 2008
- Mesajlar
- 12,822
- Excel Vers. ve Dili
-
2003 excell türkçe
ve
2007 excell türkçe
kod:
Kod:
Sub txt_veri_al()
Dim fL As Object
Set fL = CreateObject("Scripting.FileSystemObject")
say = fL.GetFolder(ThisWorkbook.Path).Files.Count
dosyaadi = ThisWorkbook.Path & "\OutlookContacts " & say & ".csv"
Open dosyaadi For Output As #1
Print #1, Cells(1, 1).Value
For a = 2 To [a65536].End(3).Row
Print #1, ",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,""" & Cells(a, 1) & """,""SMTP"",,,,,,,"
Next
Close #1
MsgBox "Bitti", vbInformation, "Bilgi"
End Sub
Ekli dosyalar
-
35 KB Görüntüleme: 9