G
Guest
I got an overflow error on Access 2000's GetWindowRect:
Declare Function GetWindowRect Lib "User" (ByVal hwnd
As Integer, r As RECT) As Integer
...
Sub NoteOnClose(frm As Form)
Dim r As RECT
....
z = GetWindowRect(frm.hwnd, r)
....
End Sub
Why is that ?
Thanks a lot.
..
Declare Function GetWindowRect Lib "User" (ByVal hwnd
As Integer, r As RECT) As Integer
...
Sub NoteOnClose(frm As Form)
Dim r As RECT
....
z = GetWindowRect(frm.hwnd, r)
....
End Sub
Why is that ?
Thanks a lot.
..