Search found 4 matches

by cripster
Tue Jul 25, 2006 7:19 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Line Input Limitation?
Replies: 6
Views: 12598

Just wanted to say "Thanks" to all who helped with the QBX program I wrote. It works fine for now, and I'll probably add a few tweaks here and there to provide a few statistics and such, but I would never have gotten this far had it not been for you folks. Thanks so much! :D Moneo, I am in...
by cripster
Sun Jul 16, 2006 12:34 am
Forum: QBASIC and QB64 Questions & Answers
Topic: Line Input Limitation?
Replies: 6
Views: 12598

Re: Line Input Limitation?

Hello, and thanks for this forum! This question concerns QBX 7.1 and the LINE INPUT # statement. Quite simply, is there a size limit on the file QBX is trying to input from? I am trying to access a text file and as soon as the file is opened an ILLEGAL FUNCTION CALL error occurs. I played around wi...
by cripster
Sat Jul 15, 2006 5:53 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Line Input Limitation?
Replies: 6
Views: 12598

can you post your code please [/b] Sure. Here it is: 10 CLS 100 OPEN "c:\upt3a.log" FOR INPUT AS #1 140 LINE INPUT #1, l$: PRINT l$: l$ = "" 160 IF EOF(1) = -1 THEN GOTO 220 200 GOTO 140 220 CLOSE : END Yeah, it's real rudimentary, but it works as long as upt3a.log is < 32767 by...
by cripster
Sat Jul 15, 2006 4:00 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Line Input Limitation?
Replies: 6
Views: 12598

Line Input Limitation?

Hello, and thanks for this forum! This question concerns QBX 7.1 and the LINE INPUT # statement. Quite simply, is there a size limit on the file QBX is trying to input from? I am trying to access a text file and as soon as the file is opened an ILLEGAL FUNCTION CALL error occurs. I played around wit...