HTBasic Help
×
Menu
Index

Converting Old HTBasic Program Files

To convert an old PROG format program run the old version of HTBasic and execute the following statements:
 
 
LOAD "prog_name"
SAVE "temp_name"
QUIT
 
Then run the new release of HTBasic and execute the following statements:
 
GET "temp_name"
       Now press the STEP key (Alt-F1)
RE-STORE "prog_name"
PURGE "temp_name" 
 
If the file is not in the current directory, remember to include the full pathname.