VBcoders Browse New Submit Contact Sign In

No account? Register free

Forgot password?

This program enables to view zoomed mode when mouse cursor placed on any position or desired. Zoom

Ganti.Jagannath Sastry  (1 Submission)   Windows System Services   VB 6.0   Unknown Difficulty   Wed 17th December 2003   Mon 8th February 2021

This program enables to view zoomed mode when mouse cursor placed on any position or desired. Zoom factor can be changed by increasing and

API Declarations


'***********************************************************************
'Open standard exe and take picturebox, textbox, timer and updown controls
'********************************************************************

Option Explicit

Private Type POINTAPI
x As Long
y As Long
End Type
Private Declare Function GetParent Lib "user32.dll" (ByVal hwnd As Long) As Long
Private Declare Function WindowFromPoint Lib "user32.dll" (ByVal xPoint As Long, ByVal yPoint As Long) As Long
Private Declare Function GetCursorPos Lib "USER32" (lpPoint As POINTAPI) As Long
Private Declare Function ReleaseDC Lib "user32.dll" (ByVal hwnd As Long, ByVal hdc As Long) As Long
Private Declare Function GetWindowDC Lib "USER32" (ByVal hwnd As Long) As Long
Private Declare Function GetDesktopWindow Lib "USER32" () As Long
Private Declare Function StretchBlt Lib "gdi32" (ByVal hdc As Long, _
ByVal x As Long, ByVal y As Long, ByVal nWidth As Long, _
ByVal nHeight As Long, ByVal hSrcDC As Long, ByVal xSrc As Long, _
ByVal ySrc As Long, ByVal nSrcWidth As Long, _
ByVal nSrcHeight As Long, ByVal dwRop As Long) As Long

Rate This program enables to view zoomed mode when mouse cursor placed on any position or desired. Zoom (1(1 Vote))
This program enables to view zoomed mode when mouse cursor placed on any position or desired. Zoom .bas

This program enables to view zoomed mode when mouse cursor placed on any position or desired. Zoom Comments

No comments yet — be the first to post one!

Post a Comment

0/1000 characters