I am working on setting up a program to output all variable data to a textfile that is distributed with the project. This is what i have so far..
FileOpen(1, "TextFile1.txt", OpenMode.binary)
FilePut(1, partno)
FileClose(1)
the work order variable is output ok but is overwritten everytime, how do i fix this and how do i output more than one variable at a time. My end goal is to have all this program working with a database, but i figured I better start with a text file and work my way up. If any of you have tips on this or the database option i would greatly appreciate it. Thank you in advance.