What is the equivalent of vbTab in Xbase++

This forum is for eXpress++ general support.
Post Reply
Message
Author
User avatar
unixkd
Posts: 565
Joined: Thu Feb 11, 2010 1:39 pm

What is the equivalent of vbTab in Xbase++

#1 Post by unixkd »

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

reganc
Posts: 257
Joined: Thu Jan 28, 2010 3:08 am
Location: Hersham, Surrey, UK
Contact:

Re: What is the equivalent of vbTab in Xbase++

#2 Post by reganc »

A google search returned:

The vbTab key is the ASCII character 9.

so it's chr(9).
Regan Cawkwell
Real Business Applications Ltd
http://www.rbauk.com

User avatar
unixkd
Posts: 565
Joined: Thu Feb 11, 2010 1:39 pm

Re: What is the equivalent of vbTab in Xbase++

#3 Post by unixkd »

Correct

Thanks

User avatar
rdonnay
Site Admin
Posts: 4728
Joined: Wed Jan 27, 2010 6:58 pm
Location: Boise, Idaho USA
Contact:

Re: What is the equivalent of vbTab in Xbase++

#4 Post by rdonnay »

It is also xbeK_TAB which is defined as Chr(9)
The eXpress train is coming - and it has more cars.

Post Reply