How to put tab into string?
I try:
Set text ->"Some text \t text2" and "Some text \\t text2" Is it possible to put tab into string in MMF2?
Printable View
How to put tab into string?
I try:
Set text ->"Some text \t text2" and "Some text \\t text2" Is it possible to put tab into string in MMF2?
I haven't tried this yet, but go into windowa Notepad and tab. Then copy and paste into your string.
Marv
Yes, copy and paste is the only way to get tabs in MMF2 strings. The only escape sequence MMF2 supports is "" which puts a quote in the string, eg "This: "" is a quote"
You can paste the tab into a global string as well and call it T, then do "MyString"+T+"My String"
;)