Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Append text to end of file - VB newbie
Message
From
13/08/2002 08:58:19
 
General information
Forum:
Visual Basic
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00689071
Message ID:
00689074
Views:
22
This message has been marked as the solution to the initial question of the thread.
yeah you need to open the file in append mode
here is the ex. you can try
Dim fso, f
Set fso = CreateObject("Scripting.FileSystemObject")
Set f = fso.OpenTextFile("Yourfile.txt", 8, True) '8 for writing to end of file
f.write YourString
f.close
Best Luck..
Nilesh
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform