Heres whats happening
i will be fetching data from a database and the output text is going to be on a big edittex box
i need to print stuff like this, in 3 columns... whose spacing i want to do with [tab]
example for ENTER key we use CRLF
similarly for TAB key... what may i use?
YO!han
i will be fetching data from a database and the output text is going to be on a big edittex box
i need to print stuff like this, in 3 columns... whose spacing i want to do with [tab]
B4X:
for i =0 to recordset-1
edittext1.text = edittext1.text & "Column1" & [tab] & "Column2" & [tab] & "Column3" & CRLF
next
example for ENTER key we use CRLF
similarly for TAB key... what may i use?
YO!han