|
-
Jan 11th, 2000, 02:41 AM
#1
Thread Starter
Hyperactive Member
-
Jan 11th, 2000, 03:54 AM
#2
you need to split the text into lengths of approx 75 characters (if your using courier New font)
Code:
MyString = Text1.text
for i = 0 to (len(mystring) mod 75) + 1
printer.print, mid(mystring, (i * 75), 75)
next i
i think this will do the trick, if it misses out some of the characters, then adjust the for i = ... line, (i havent tested it but i have used this in the past).
------------------
Wossname,
Email me: [email protected] 
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
|