PumaCyan Member Licensed User May 4, 2023 #1 how to add tab function in a character? to look neat and aligned inside a customlistview... currently I use spaces My Code: CustomListView1.AddTextItem(CS.Initialize.Typeface(Typeface.DEFAULT_BOLD).Pop.Size(13).Append("Nota : " & cd.no_nota).Pop.Size(13).Append(CRLF & "Total : " & MyFormat.MyCurrency(cd.total)).Append(CRLF & "Petugas : " & cd.user).PopAll, cd.nota) Attachments Screenshot_2023-04-18-18-42-07.png 50.7 KB · Views: 218 Last edited: May 4, 2023
how to add tab function in a character? to look neat and aligned inside a customlistview... currently I use spaces My Code: CustomListView1.AddTextItem(CS.Initialize.Typeface(Typeface.DEFAULT_BOLD).Pop.Size(13).Append("Nota : " & cd.no_nota).Pop.Size(13).Append(CRLF & "Total : " & MyFormat.MyCurrency(cd.total)).Append(CRLF & "Petugas : " & cd.user).PopAll, cd.nota)
MicroDrie Well-Known Member Licensed User Longtime User May 4, 2023 #2 Have you tried TAB, or \t or \\t? Upvote 0
Erel B4X founder Staff member Licensed User Longtime User May 7, 2023 #3 1. Make sure to use monospace font. 2. You can simply add tab (click on tab) instead of spaces inside the string. Upvote 0
1. Make sure to use monospace font. 2. You can simply add tab (click on tab) instead of spaces inside the string.