Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

help with GetClassInfo Api to get control name from other app

Status
Not open for further replies.

jijo123

MIS
Sep 15, 2005
1
US
StringBuilder className = new StringBuilder(256);
Win32.GetClassName(hWnd, className, className.Capacity);


Win32.WNDCLASS wndclass = new Win32.WNDCLASS();
Win32.GetClassInfo(hWnd, "textBox1", out wndclass);
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top