VBcoders Browse New Submit Contact Sign In

No account? Register free

Forgot password?

With the help of this code you could not click the other object.

M.Faisal Farooq  (1 Submission)   Windows API Call/Explanation   VB 6.0   Unknown Difficulty   Tue 25th March 2003   Mon 8th February 2021

With the help of this code you could not click the other object.

API Declarations


'Block The Curser to move the other Object




Option Explicit

Private Declare Sub ClientToScreen Lib "user32" (ByVal hwnd As Long, lpPoint As POINT)
Private Declare Sub ClipCursor Lib "user32" (lpRect As Any)
Private Declare Sub OffsetRect Lib "user32" (lpRect As RECT, ByVal X As Long, ByVal Y As Long)
Private Declare Sub GetClientRect Lib "user32" (ByVal hwnd As Long, lpRect As RECT)
Private Type RECT
Left As Integer
Top As Integer
Right As Integer
Bottom As Integer
End Type
Private Type POINT
X As Long
Y As Long
End Type

Rate With the help of this code you could not click the other object. (2(2 Vote))
With the help of this code you could not click the other object..bas

With the help of this code you could not click the other object. Comments

No comments yet — be the first to post one!

Post a Comment

0/1000 characters