Link to home
Start Free TrialLog in
Avatar of VikramMullick
VikramMullick

asked on

To Write Tab-delimited text file .

Hi,
I want to write a Tab-delimited text file . I will get input from dataset , which will have five columns .How to add tabs space between the columns .
If my field length is varying I don't know there length
then how to give proper structure to the file .

Regards,
Vikram
ASKER CERTIFIED SOLUTION
Avatar of Guy Hengel [angelIII / a3]
Guy Hengel [angelIII / a3]
Flag of Luxembourg image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Hi!

String & Chr(9) & String

Matti
Avatar of ZeonFlash
ZeonFlash

You can also use vbTab, which is just an alias for Chr(9) as Matti stated :)