how to change F-BASIC V6.0 source to vba

  • Thread starter Thread starter youngman
  • Start date Start date
Y

youngman

hi,

i have a lot of programs that were made by F-BASIC V6.0
how to change F-BASIC V6.0 source to vba.

any advice will be greatly appreciated

thanks
 
-----Original Message-----
i have a lot of programs that were made by F-BASIC V6.0
how to change F-BASIC V6.0 source to vba.

Generally, just copy and paste into VBE.

You WILL have to change:

PRINT "Text" to MsgBox("Text")

INPUT A to A = InputBox("Enter value for A",,A)

....and a few other things that will crop up.

Just try it !

Visual Basic will tell you what the errors are, and Kind
Souls in here will tell you how to solve the challenges !
 
THANKS FOR YOUR ADVICE.

i will have a try.
when a few other things crop up ,would you tell me anything to solve them.

thank you after all.
 
Back
Top