View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Robin Clay[_2_] Robin Clay[_2_] is offline
external usenet poster
 
Posts: 14
Default how to change F-BASIC V6.0 source to vba


-----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 !