|
-
Jun 8th, 2001, 09:18 AM
#1
Thread Starter
Junior Member
User32 Animate Window Function
I cant figure out the correct declare statment for the user32 function AnimateWindow. its prototype is:
BOOL AnimateWindow(
HWND hwnd, // handle to window
DWORD dwTime, // duration of animation
DWORD dwFlags // animation type
);
What is the equivelant of the DWORD in VB., or rather, what would the prototype look like in vb?
Thanks again.
-
Jun 8th, 2001, 02:25 PM
#2
VB Code:
Declare Function AnimateWindow Lib "user32.dll" (ByVal hwnd As Long, ByVal dwTime As Long, ByVal dwFlags As Long) As Long
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
|