Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Append text to end of file - VB newbie
Message
De
13/08/2002 08:58:19
 
Information générale
Forum:
Visual Basic
Catégorie:
Codage, syntaxe et commandes
Divers
Thread ID:
00689071
Message ID:
00689074
Vues:
21
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
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform