|
|
- - - - - - - - - - - - - - ผู้ให้การสนับสนุน- - - - - - - - - - - - - -
|
|
|
กระทู้ #3480 [Vb] (จาก IP: 118.175.34.107)
รบกวนสอบถามเรื่อง Code การ Save ข้อมูลจาก Textbox ไปเป็น File .txt ครับ
คือผมกำลังทำโปรเจ็คโดยใช้ VB6 แสดงข้อมูลลงใน Textbox ครับทีนี้เนื่องจากผมเขียน Database ยังไม่เป็นและเวลามีน้อยก็เลยจะเอาแค่แสดงผลแล้วสามารถกดปุ่ม Save Data ใน Textbox ไปเป็น file .txt สำหรับจัดเก็บเพื่อเปิดดูในภายหลังอ่ะครับ แต่พยายามมาสามวันแล้วก็ยังทำไม่ได้เลยครับ หาตัวอย่างก็ยังไม่ได้ รบกวนช่วยแนะแนวทาง หรือแนะนำตัวอย่างให้ผมด้วยครับ ของคุณครับ
|
จากคุณ
:
ธีรพงศ์ / potaemce@gmail.com [2013-12-20 13:30:47]
|
|
ความคิดเห็น #28974 (จาก IP: 103.5.27.130)
ทำไม ผมค้นใน google แป๊บเดียวก็เจอ ?
An example of writing a file:
Dim sFileText as String Dim iFileNo as Integer iFileNo = FreeFile 'open the file for writing Open "D:\Test.txt" For Output As #iFileNo 'please note, if this file already exists it will be overwritten!
'write some example text to the file Print #iFileNo, "first line of text" Print #iFileNo, " second line of text" Print #iFileNo, "" 'blank line Print #iFileNo, "some more text!"
'close the file (if you dont do this, you wont be able to open it again!) Close #iFileNo |
จากคุณ
:
maddog [2013-12-21 15:14:20]
|
|
|
- - - - - - - - - - - - - - ผู้ให้การสนับสนุน- - - - - - - - - - - - - -
|
|
|
|
|