StretchBlt should work on W98. However, it is just possible that the raster device you are trying to do the the StretchBlt on doesn't support stretching ...
Try a GetDeviceCaps call, like:
Private Declare Function GetDeviceCaps Lib "gdi32" (ByVal hdc As Long, ByVal nIndex As Long) As Long
Private Const RASTERCAPS = 38
Private Const RC_STRETCHBLT = &H800
Private Sub Form_Load()
MsgBox "Can use StretchBlt: " & ((GetDeviceCaps(hdc, RASTERCAPS) And RC_STRETCHBLT) = RC_STRETCHBLT)
End Sub
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.