|
-
October 29th, 2010, 04:15 PM
#1
printing tab characters
I have a formatted page of text that I'm trying to print using StreamWriter.Write and it doesn't seem to understand vbTab. If I write the text to a file, the tabs show up fine but when printed to hard copy there's no white space where the tabs should be.
Anybody have an idea what's up with that?
Thanks
-
October 29th, 2010, 07:11 PM
#2
Re: printing tab characters
If the post was helpful...Rate it! Remember to use [code] or [php] tags.
-
November 1st, 2010, 08:53 AM
#3
Re: printing tab characters
Yeah, "\t" prints literal, Chr(9) does nothing just like vbTab. This is very frustrating.
-
November 8th, 2010, 08:26 AM
#4
Re: printing tab characters
How about - Dim c As String = Convert.ToChar(Keys.Tab)
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|