Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

OLD MSX BASIC

Status
Not open for further replies.

uaas

Programmer
Jun 26, 2004
9
JO
I Have a program written in 1986 in an MSX BASIC compatible computer, and I'd like to run it now that I have an XP operating system, I also have Visual studio 6.

How can I do for converting the program and run it?

Usamah Sayed,
Amman - Jordan.
 
Did you already try running it from a command prompt?
 
How can I try it, it has a format like this:
Code:
Attribute VB_Name = "Module1"
5 Cls
6 Rem *Introducir clave y separar cocientes y restos*
10 INPUT a
20 For i = 0 To a - 1
30 INPUT x$(i)
32 If i = 0 Then GoTo 40
35 Let r(i) = Val(Right$(x$(i), 1))
36 Let y(i) = Val(Left$(x$(i), Len(x$(i)) - 1))
40 Next i

so how can I do that??

Usamah Sayed,
Amman - Jordan.
 
You could always run it with a copy of QBasic (interpreter) that was included in DOS 5.0 and up.

Lee
 
There are dozens of free BASIC compilers and interpreters available - just Google for FREE BASIC

________________________________________________________________
If you want to get the best response to a question, please check out FAQ222-2244 first.
'If we're supposed to work in Hex, why have we only got A fingers?'
Drive a Steam Roller
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top