/ Forums / Advansys Formativ / Creating Solutions with Formativ / Writing to a text file / Reply To: Writing to a text file
November 16, 2005 at 2:45 am
#7372
Another way
Direct with VBS
Set fso = CreateObject(“Scripting.FileSystemObject”)
Fic_Path = “C:somewhere in file system”
Set tempfile = fso.CreateTextFile(Path)
tempfile.WriteLine (“Arcane GroupWare”)
tempfile.WriteLine( “[Fic_Vis_Cat]”)
tempfile.WriteLine( “Téléphone” )
tempfile.Close
L.P. Irovetz