I'd like to ask a question: I want to use QB to write a simple notepad, but I ran into a problem:
cls
input "",a$
open "c:\1.txt" for append as #1
print #1,a$
close #1
end
But this program can only input 255 (about that many) letters. Is there any other way to make it not be limited by the number of characters~
cls
input "",a$
open "c:\1.txt" for append as #1
print #1,a$
close #1
end
But this program can only input 255 (about that many) letters. Is there any other way to make it not be limited by the number of characters~



