|
-
Jul 8th, 2002, 12:48 AM
#1
Thread Starter
New Member
-
Jul 8th, 2002, 12:53 AM
#2
Hyperactive Member
this will paste the clipboard information gathered with PrintScr to the picturebox Picture1.
VB Code:
Private Sub Command1_Click()
Picture1.PaintPicture Clipboard.GetData, 0, 0
End Sub
Signed, Rodik ([email protected])
Programmer,usesVB6ED
===========================
Copyright©RodikCo,2002.
Dont mind this signature ;] Its old
-
Jul 8th, 2002, 12:56 AM
#3
Hyperactive Member
You might want to use a ImageBox instead, since it's got a Stretch property.
VB Code:
Image1.Stretch = True
Image1.Picture = Clipboard.GetData
Signed, Rodik ([email protected])
Programmer,usesVB6ED
===========================
Copyright©RodikCo,2002.
Dont mind this signature ;] Its old
-
Jul 8th, 2002, 12:58 AM
#4
Thread Starter
New Member
cool yeah it worked but how would i be able to size it down to fit into a smaller picturebox....?
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
|