harryball
05-14-2008, 10:55 PM
I'm having trouble running SB 3.5.7 on Vista. When I try to run a file with a choice in it I get a DEP (Data Execution Protection) error.
Here is some sample code...
SA
SO,1,1 'Turning spindle ON for first time
PAUSE,2
PRINT "File Cutting Options"
PRINT "1) E2-L"
PRINT "2) E2-R"
PRINT "9) Exit"
REPEAT:
'Request what to run
INPUT "Select File Cutting Option from menu -" &cut_side
IF &cut_side = 9 THEN GOTO DONE
SO,1,1 'Turning spindle back ON
Here is some sample code...
SA
SO,1,1 'Turning spindle ON for first time
PAUSE,2
PRINT "File Cutting Options"
PRINT "1) E2-L"
PRINT "2) E2-R"
PRINT "9) Exit"
REPEAT:
'Request what to run
INPUT "Select File Cutting Option from menu -" &cut_side
IF &cut_side = 9 THEN GOTO DONE
SO,1,1 'Turning spindle back ON