How to show tabulators in ListIconGadgets?
Posted: Sat Apr 20, 2024 10:01 am
I was wondering if there's a flag for ListIconGadgets to allow showing tabulators within a text - I didn't find any hint here so far...
...for example, the following code just shows "**" with no space between the asterisks:
...actually I do something like this to replace the tabulators by some spaces (which slows down everything a little bit):
...for example, the following code just shows "**" with no space between the asterisks:
Code: Select all
SetGadgetItemText(#ListSource,-1,"*"+#TAB+"*")Code: Select all
SetGadgetItemText(#ListSource,n,Str(n)+#LF$+ReplaceString(text.s,#TAB$," "))