Search found 2 matches

by semiex
Sat Feb 07, 2004 3:27 am
Forum: QBasic / QuickBasic related
Topic: Edit .txt
Replies: 3
Views: 1524

Re: Edit .txt

Thank You Artie
I will try both those surgestions later today
actually 2059 is the beginning of the text i wont to work with and i had to get rid of header and find out where the start was, the final outcome will be a .dbf file with headers replaced with my choosing, the parenthesis 'CHR$(41)' is ...
by semiex
Fri Feb 06, 2004 9:34 am
Forum: QBasic / QuickBasic related
Topic: Edit .txt
Replies: 3
Views: 1524

Edit .txt

I would like to edit a .txt file using Qbasic,
The .txt file was created via another program as a .db file and then opened via wordpad and saved as .txt file
I have replaced the header in the text via

post$= chr$(0)
OPEN "C:\"+filename+".txt" for Binary as #6
for count = 1 to 2057
Put #6,count ...