I was hoping it was a feature, but instead of 123 I'm getting 1.407074E+14 for returncode.
Got it. Changed it to an integer type:
returncode% = Shell("foo.exe")
Print returncode%
Pete
Code: (Select All)
_title "foo.exe"
Print "Return Code Demo..."
End 123
Code: (Select All)
returncode = Shell("foo.exe")
Print returncode
Got it. Changed it to an integer type:
returncode% = Shell("foo.exe")
Print returncode%
Pete