Open Read Write Issues
Open Read Write Issues
(OP)
Okay this may seem trivial to most but I'm writing a program that will keep track of completed tasks and invintory but when i use the open command i can get it to create the file and input data but as soon as i goto run the program the second time it dosent add more data it replaces the old data with new. this program Primary reason is to keep track of where invintory is and what the technician will be paid for ve all the other job. i have all the other neccessary information i need but the data management. How do i keep an ongoing file of data for different sessions of the program?
RE: Open Read Write Issues
OPEN "INVENTORY.TXT" FOR APPEND AS #1
RE: Open Read Write Issues
http://www.nickjc.co.uk/qbtutor5.htm
RE: Open Read Write Issues
If you want the latter, you should open your file as input and open another file for output. When finished. close and then kill the original and rename the work file.
RE: Open Read Write Issues
Ed Fair
Give the wrong symptoms, get the wrong solutions.