Visual Basic

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have the old GW Basic 3.5 diskette. What Program file extension do I use to
access the basic files? The current file extension is ".bas"
 
I have the old GW Basic 3.5 diskette. What Program file extension do I use to
access the basic files? The current file extension is ".bas"

If you mean run them, you'll need a basic compiler or interpreter
(there are a few freeware ones, and you'll probably need to modify the
source to compile it in VB).

If you just want to look at the code, use a text editor like EDIT from
DOS, or notepad from windows. Just like the .c and .cpp files, they
should just be plain text files. The usual extension for plain text
files in windows is .TXT, but you shouldn't need to change the
extension to load them up in an editor.

If the file formatting screwed up but appears otherwise intact, load
it up in wordpad, and save it (no other changes). That'll swap out
the linefeed characters for the one MS operating systems expect, which
is usually all you need. It shouldn't affect compiling or
interpreting whether you convert it or leave it.
 
GWBasic.exe?
Gene
I have the old GW Basic 3.5 diskette. What Program file extension do I use to
access the basic files? The current file extension is ".bas"
 
MCheu said:
If you mean run them, you'll need a basic compiler or interpreter
(there are a few freeware ones, and you'll probably need to modify the
source to compile it in VB).

If you just want to look at the code, use a text editor like EDIT from
DOS, or notepad from windows. Just like the .c and .cpp files, they
should just be plain text files. The usual extension for plain text
files in windows is .TXT, but you shouldn't need to change the
extension to load them up in an editor.

If the file formatting screwed up but appears otherwise intact, load
it up in wordpad, and save it (no other changes). That'll swap out
the linefeed characters for the one MS operating systems expect, which
is usually all you need. It shouldn't affect compiling or
interpreting whether you convert it or leave it.
 
MCheu said:
If you mean run them, you'll need a basic compiler or interpreter
(there are a few freeware ones, and you'll probably need to modify the
source to compile it in VB).

If you just want to look at the code, use a text editor like EDIT from
DOS, or notepad from windows. Just like the .c and .cpp files, they
should just be plain text files. The usual extension for plain text
files in windows is .TXT, but you shouldn't need to change the
extension to load them up in an editor.

If the file formatting screwed up but appears otherwise intact, load
it up in wordpad, and save it (no other changes). That'll swap out
the linefeed characters for the one MS operating systems expect, which
is usually all you need. It shouldn't affect compiling or
interpreting whether you convert it or leave it.
Robert Wendell Kenney also (e-mail address removed)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top