[Macro] Not sure is this a bug or feature
Posted: Sun Jan 18, 2015 4:31 am
simple macro:
to replace [...something...] to [...otherthing...]
":Endif" replace "Endif"
This trying to macro some "Keywords", this give compiler error.
ok, below this is try to change the a "Traditional Remark" to "PB Remark"
Replace "REM" with ";"
or even put in singleline
or
Change "{" to ":"
It didn't work, any one mind to tell the work around ? thanks anyway
to replace [...something...] to [...otherthing...]
":Endif" replace "Endif"
Code: Select all
Macro Endif
:Endif
EndMacro
ok, below this is try to change the a "Traditional Remark" to "PB Remark"
Replace "REM" with ";"
Code: Select all
Macro REM
;
EndMacro
REM This is comments
For i= 1 To 100
Debug i
Next
Code: Select all
Macro REM : ; : EndMacro
Change "{" to ":"
Code: Select all
Macro {
:
EndMacro