Have the stop command basically do: MessageRequester("Stop",Your Dialog Here,#PB_MessageRequester_Abort | #PB_MessageRequester_Ignore)
The variable we pass into Stop would ignore the variable type and always display it in the "your dialog here" section. I use this command in Clarion everyday to quickly inspect the values of numbers or strings. Don't get me wrong - Debug is great but sometimes its nice to have the code stop at a specific spot and display your results without moving forward.
Code: Select all
Define LongNum
Define Str.s
Stop(Str)
Stop(LongNum)
Stop("Var: " + LongNum)
Thanks for listening Dudes!