studio .net api constant help

  • Thread starter Thread starter tacotown
  • Start date Start date
T

tacotown

Guest
im tryin to use user32 function getwindow using visual studio .net. ive searched through the help files over and over and cant 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 im thinking i might have taken a plunge too deep)
 
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]
 
Last edited by a moderator:
GetWindow is a hold-over from previous versions of Windows. It shouldnt be used.

Code:
Public Const GW_CHILD As Long = 5
Public Const GW_NEXT As Long = 2
 
Back
Top