|
-
Jul 13th, 2005, 08:51 AM
#1
Thread Starter
Lively Member
StretchBlt doesnt work on Win98...help!
dim r as long
r = StretchBlt(pictureBox_Dest.hdc, 0, 0, 100, 100, pictureBox_Src.hdc, 0, 0, 500, 500, vbSrcCopy)
r = 1 (success) on WinXP
r = 0 (fail) on Win98
plz help
-
Jul 13th, 2005, 10:51 AM
#2
Re: StretchBlt doesnt work on Win98...help!
What is the error # from the API call?
dim r as long
r = StretchBlt(pictureBox_Dest.hdc, 0, 0, 100, 100, pictureBox_Src.hdc, 0, 0, 500, 500, vbSrcCopy)
If r = 0 Then Debug.Print Err.LastDLLError
Post the LastDLLError value.
-
Jul 13th, 2005, 11:10 AM
#3
Thread Starter
Lively Member
Re: StretchBlt doesnt work on Win98...help!
r = 0
the Err object is empty:
Err.LastDLLError = 0
Err.Description = ""
should Err object work on Win98?
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
|