Hi alll
What is the equivalent of vbTab in Xbase++
I am trying to convert the below to Xbase++
Do While Not rs.EOF
g.AddItem ("" & vbTab & _
rs("ID") & vbTab & _
rs("LastName") & vbTab & _
rs("FirstName") & vbTab & _
rs("BirthDate"))
rs.MoveNext
Loop
Thanks.
Joe
What is the equivalent of vbTab in Xbase++
Re: What is the equivalent of vbTab in Xbase++
A google search returned:
The vbTab key is the ASCII character 9.
so it's chr(9).
The vbTab key is the ASCII character 9.
so it's chr(9).
Regan Cawkwell
Real Business Applications Ltd
http://www.rbauk.com
Real Business Applications Ltd
http://www.rbauk.com
Re: What is the equivalent of vbTab in Xbase++
Correct
Thanks
Thanks
Re: What is the equivalent of vbTab in Xbase++
It is also xbeK_TAB which is defined as Chr(9)
The eXpress train is coming - and it has more cars.