Guest tacotown Posted August 15, 2002 Posted August 15, 2002 i'm tryin to use user32 function 'getwindow' using visual studio .net. i've searched through the help files over and over and can't find the values for the constants (gw_child, gw_next etc). if someone experienced in net studio can point me in the right direction to find values for api call constants, it would be a great help. (lots seems to have changed since vb3 and i'm thinking i might have taken a plunge too deep) Quote
*Experts* Bucky Posted August 15, 2002 *Experts* Posted August 15, 2002 (edited) You can use the Constants search on EliteVB HERE to find the values of the constants. Also, usually a good Google search on your constant name will return good results. [edit]Whoo! Post #800! :D[/edit] Edited August 15, 2002 by Bucky Quote "Being grown up isn't half as fun as growing up These are the best days of our lives" -The Ataris, In This Diary
*Gurus* Derek Stone Posted August 15, 2002 *Gurus* Posted August 15, 2002 GetWindow is a hold-over from previous versions of Windows. It shouldn't be used. Public Const GW_CHILD As Long = 5 Public Const GW_NEXT As Long = 2 Quote Posting Guidelines
Recommended Posts