It seems a bit of a reach to think there's any expertise left for VBDOS v1.0. I don't know how much there ever really was in the first place. I've been playing around with multi-line text boxes and text files. I found this example online for some flavor of VB for moving text from a box into a file:
OPEN "C:\VBD\TEST.TXT" FOR OUTPUT AS #1
PRINT #1, Text1.Text
CLOSE #1
Very simple and very effective! This example isn't in the help file, that I've been able to find. I need to learn how to do the opposite of this, too. Changing OUTPUT to INPUT and PRINT# to INPUT# doesn't seem to be the way. Any expertise or thoughts would be greatly appreciated.
Thanks,
-John
OPEN "C:\VBD\TEST.TXT" FOR OUTPUT AS #1
PRINT #1, Text1.Text
CLOSE #1
Very simple and very effective! This example isn't in the help file, that I've been able to find. I need to learn how to do the opposite of this, too. Changing OUTPUT to INPUT and PRINT# to INPUT# doesn't seem to be the way. Any expertise or thoughts would be greatly appreciated.
Thanks,
-John