Why does this code compile: STRMENU(‘Notice,Payment,Address,Correct’,4) as long as the code resides on one line. If I split the line as follows it will not complile? STRMENU(‘Notice,Payment, Address,Correct’,4)
because you split a string try STRMENU(‘Notice,Payment,’+ ‘Address,Correct’,4) and it works.
Yes it does! Thank you.