Olé!


Thanks for the speed and the support!
Olé!
Code: Select all
CompilerIf Not #PB_OS_Windows
CompilerError "Currently Windows Only."
CompilerEndIf
Code: Select all
CompilerIf #PB_Compiler_OS <> #PB_OS_Windows
CompilerError "Currently Windows Only."
CompilerEndIf
Thank you HeXOR,HeX0R wrote: Thu Mar 31, 2022 6:28 pm If I understand your problem description correctly, why not simply set [Global] -> RunOne = 0 in the PureBasic.prefs?
[Edit]
This is wrong btw.:#PB_OS_Windows is available on all OSCode: Select all
CompilerIf Not #PB_OS_Windows CompilerError "Currently Windows Only." CompilerEndIf
You need:Code: Select all
CompilerIf #PB_Compiler_OS <> #PB_OS_Windows CompilerError "Currently Windows Only." CompilerEndIf
Thank you!
Thank you!