|
-
Jul 3rd, 2004, 10:48 AM
#1
Thread Starter
New Member
text alignment while printing on dotmatrix printer using vb
Hi,
Can u help me how to print a multiline on dotmatrix printer at my prefered location.For example say address,
alan rodrigues,
abu shagara,
london.
I really appreciated if somebody can help me in this...very urgent..
regards,
rosa.
-
Jul 7th, 2004, 10:09 AM
#2
PowerPoster
dim printline as string
printline = space(5) & "alan rodrigues" & vbcrlf
printer.print printline
printline = space(5) & "abu shagara" & vbcrlf
printer.print printline
printline = space(5) & "london" & vbcrlf
printer.print printline
printer.printdoc
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
|