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:
Code: Select all
SetGadgetItemText(#ListSource,-1,"*"+#TAB+"*")
...actually I do something like this to replace the tabulators by some spaces (which slows down everything a little bit):
Code: Select all
SetGadgetItemText(#ListSource,n,Str(n)+#LF$+ReplaceString(text.s,#TAB$," "))