Hi.
Anyone have code, that should save every new text to a new row?

This code saves text to the same row as previous.
Code:
Open "c:\file.txt" for Append as #1
Print #1, strData
Close #1
Miha2c30