D daveinhull Active Member Licensed User Longtime User Nov 5, 2016 #1 Hi, This might sound like a silly question, but how to I put a tab character in a string that is going on SingleLine ListView? I have tried: sTemp = "xxxx" & chr(9) "yyyyy" ListView.AddSingleLine(sTemp) sTemp = "xxxx" & chr(KEYCODE_TAB) & "yyyy" ListView.AddSingleLine(sTemp) What I'm trying to do is put up "xxxx" followed by a tab and "yyyy" so that the columns are aligned. I'm thinking that this isn't possible. Thoughts? Thanks in advance Dave
Hi, This might sound like a silly question, but how to I put a tab character in a string that is going on SingleLine ListView? I have tried: sTemp = "xxxx" & chr(9) "yyyyy" ListView.AddSingleLine(sTemp) sTemp = "xxxx" & chr(KEYCODE_TAB) & "yyyy" ListView.AddSingleLine(sTemp) What I'm trying to do is put up "xxxx" followed by a tab and "yyyy" so that the columns are aligned. I'm thinking that this isn't possible. Thoughts? Thanks in advance Dave
I inakigarm Well-Known Member Licensed User Longtime User Nov 5, 2016 #2 Have you try with keyword B4X: TAB ? Upvote 0