I want to output a string including tab characters to the web page form the
VB_developped dll,but all tab characters are substituted by space when
outputed ,althoug I use char(9) in VB code to write the tab character.what is
the correct method to output the tab?
thanks for you help.
Sinna - 30 Jun 2008 08:02 GMT
> I want to output a string including tab characters to the web page form the
> VB_developped dll,but all tab characters are substituted by space when
> outputed ,althoug I use char(9) in VB code to write the tab character.what is
> the correct method to output the tab?
> thanks for you help.
Where do you output the string to? Perhaps you can substitute Chr$(9)
with the vbTab constant.
Sinna