Window Title and Class

  • Thread starter Thread starter Rob
  • Start date Start date
R

Rob

I have a DLL that requires the windows Form title and the window class. I can access
the title from Me.Text, but how can I get the class ? I used WinSpy by Robert Kuster to
get the class remotely which is WindowsForms10.Window.8.app1, but theres got to
be a way to the class ( Me.? ). The DLL requires the 2 parameters for
wndHandle = ::FindWindowEx(0, 0, pTDF, pWT);

line of code.

TIA RS
 
I have a DLL that requires the windows Form title and the window class. I can access
the title from Me.Text, but how can I get the class ? I used WinSpy by Robert Kuster to
get the class remotely which is WindowsForms10.Window.8.app1, but theres got to
be a way to the class ( Me.? ). The DLL requires the 2 parameters for
wndHandle = ::FindWindowEx(0, 0, pTDF, pWT);


The GetClassName Win32 API function.




Mattias
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top