Editing and saving

this will append the data instead of overwriting previously written stuff:

sw_file = New StreamWriter(sFilename, True)

the default is False which overwrites the file, but setting it to true in the call it'll append
 
Back
Top