Jump to content

Get window class from the handle?


Hyflex
 Share

Recommended Posts

Hey Guys,

I saw this bit of code on a different website recently and am trying to do something slightly different with it.

$vMousePos = MouseGetPos()
$vWin = DllCall("user32.dll", "hwnd", "WindowFromPoint", "int", $vMousePos[0], "int", $vMousePos[1])

If you run the above code, you'll get two variables being the handle and then the title.

From the handle only (Because there are multiple windows open with the same title) I want to be able to retrieve the class, this will enable me to to do a simple:

If $vClass = "TextExampleHere" Then
    ;WinActivate("[CLASS:" & $vClass & "]")
    WinActivate($vClass) ; Unsure what ones correct...
EndIf

Any ideas?

Edited by Hyflex
Link to comment
Share on other sites

  • Moderators

Hyflex,

A search of the Help file for "handle to classname" brought up _WinAPI_GetClassName which seems to be just what you require. :)

As to syntax, you would need:

WinActivate("[CLASS:" & $vClass & "]")
once you have the classname. But why not use the handle directly? ;)

M23

Edited by Melba23
Typo

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

Spoiler

ArrayMultiColSort ---- Sort arrays on multiple columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

Link to comment
Share on other sites

Hyflex,

A search of the Help file for "handle to classname" brought up _WinAPI_GetClassName which seems to be just what you require. :)

As to syntax, you would need:

WinActivate("[CLASS:" & $vClass & "]")
once you have the classname. But why not use the handle directly? ;)

M23

 

 

Hi Melba23,

I had a search but I didn't search for that phrase, if you saw my browser history too it's full of hundreds of google and autoit searchs :P but yes that seems to be what I need.

Well, it's possible for the window the mouse is hovering over isn't the intended window and the only way I can do a check is by comparing the classname because some days the windows might be called "Window 1", "Window 1" and "Window 1" but other days they might be "Window", "Window 5", "Window 10" and using the WinTitleMatchMode option doesn't quite cover it enough.

Classname comparison is the best option for me.

Thanks M23

 

Link to comment
Share on other sites

  • Moderators

Hyflex,

My comment was related to the use of the classname in the WinActivate code - once you have identified the correct window by classname you can simply use its handle to activate it. :)

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

Spoiler

ArrayMultiColSort ---- Sort arrays on multiple columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...