|
-
Jan 30th, 2002, 04:52 PM
#1
Thread Starter
Addicted Member
Drawing text
How do you draw text in a picturebox.
-
Jan 30th, 2002, 05:05 PM
#2
Good Ol' Platypus
Look up the TextOut API call.
All contents of the above post that aren't somebody elses are mine, not the property of some media corporation. 
(Just a heads-up)
-
Jan 30th, 2002, 07:11 PM
#3
Thread Starter
Addicted Member
I don't have API viewer. What does API call look like?
-
Jan 30th, 2002, 07:18 PM
#4
Addicted Member
the api viewer comes with your visual basic, try clicking the
windows button --> programs-->Visual Basic-->Api Viewer
-
Jan 30th, 2002, 08:55 PM
#5
Junior Member
You can use vbAPI.com 's refrence too. It explains alot....
-
Jan 31st, 2002, 12:24 AM
#6
Thread Starter
Addicted Member
API Viewer only comes with Professional and Enterprize versions of VB. I am poor so I only have learning edition.
-
Jan 31st, 2002, 10:13 PM
#7
Hyperactive Member
VB Code:
Private Sub Command1_Click()
Picture1.Print "ABC"
End Sub
Do NOT try to put this code into the Form_Load event, you would have to put it in the Form_Paint event. Also, set Picture1's AutoRedraw property to True at design time.
[vbcode]
' comment
Rem remark
[/vbcode]
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
|