Compiler features
Posted: Wed May 31, 2006 6:57 pm
I see you have a EnableDebugger keyword like EnableExplicit, but it does'nt work, that's actually a bug?
I also want a EnableOnErrorsLineSupport!
So I could do:
Because that's just sexy!
I actually think that all compiler options should be declared like that, you know...
I also want a EnableOnErrorsLineSupport!
So I could do:
Code: Select all
#ErrorSupport = #True
CompilerIf #ErrorSupport
EnableOnErrorsLineSupport
Declare Error()
OnErrorGosub(@Error())
CompilerEndIf
I actually think that all compiler options should be declared like that, you know...
Code: Select all
StartCompilerOptions
EnableExplicit
EnableDebugger
EnableXPSkinSupport
EnableOnErrorsLineSupport
SetExecutableFormat = #Windows|#AllCPU
SetExecutableIcon = "icon.ico"
EndCompilerOptions