To search about a bug (my previous thread), I needed toe xclude from execution a piece of code at Run time (not in the application).
So, because I develop on macOS, I used
#If TargetWindows
…/…
#EndIf
How do you do that ?
PS: I cannot use Cut, then Paste because I am always in low memory condition and the Clipboard Operations are not reliable.
Moving the code into TextEdit document also have its drawback.
For me, the code MUST STAY WHERE IT IS.
#If False // Never include this in debugs or apps, but keep the code here
MessageBox "aaa"
MessageBox "aaa"
MessageBox "aaa"
MessageBox "aaa"
MessageBox "aaa"
MessageBox "aaa"
#EndIf
That’s the equivalent to what you did, but for ANY case or platform.
Ah, I see. I’ve misunderstood your intention (“I needed toe xclude from execution a piece of code at Run time (not in the application)”) and thought you wanted to exclude the code when you hit ‘Run’ (i.e. in debug mode) but not in the application.
Me too. For a moment. But over the years I learned that sometimes Emile says something but was thinking another thing, needing more “decoding” of the intentions.