Code: Select all
Macro dbug(programline)
If #PB_Compiler_Debugger
programline
EndIf
EndMacro
text$="in production mode"
dbug(text$="in debug mode")
MessageRequester("dbug test",text$)
Code: Select all
Macro dbug(programline)
If #PB_Compiler_Debugger
programline
EndIf
EndMacro
text$="in production mode"
dbug(text$="in debug mode")
MessageRequester("dbug test",text$)
Code: Select all
Macro dbug(programline)
If #PB_Compiler_Debugger
programline
EndIf
EndMacro
text$="in production mode"
Macro more()
text$="in"
text$+" debug mode"
text$+" mode"
EndMacro
dbug(more())
MessageRequester("dbug test",text$)