DaleHohm Posted December 6, 2007 Posted December 6, 2007 Anyone know -- Is there any way to differentiate between a control handle and a window handle? isHWnd returns true for both, as does _WinAPI_Iswindow... e.g. #Include <WinAPI.au3> ShellExecute("notepad.exe") WinWaitActive("Untitled - Notepad") $window_handle = WinGetHandle("Untitled - Notepad", "") $control_handle = ControlGetHandle("Untitled - Notepad", "", "Edit1") ConsoleWrite(isHWnd($window_handle) & ":" & IsHWnd($control_handle) & @CR) ConsoleWrite(_WinAPI_IsWindow($window_handle) & ":" & _WinAPI_IsWindow($control_handle) & @CR) I'd like to be able to take different code paths based upon which type is passed to a function. Thanks, Dale Free Internet Tools: DebugBar, AutoIt IE Builder, HTTP UDF, MODIV2, IE Developer Toolbar, IEDocMon, Fiddler, HTML Validator, WGet, curl MSDN docs: InternetExplorer Object, Document Object, Overviews and Tutorials, DHTML Objects, DHTML Events, WinHttpRequest, XmlHttpRequest, Cross-Frame Scripting, Office object model Automate input type=file (Related) Alternative to _IECreateEmbedded? better: _IECreatePseudoEmbedded Better Better? IE.au3 issues with Vista - Workarounds SciTe Debug mode - it's magic: #AutoIt3Wrapper_run_debug_mode=Y Doesn't work needs to be ripped out of the troubleshooting lexicon. It means that what you tried did not produce the results you expected. It begs the questions 1) what did you try?, 2) what did you expect? and 3) what happened instead? Reproducer: a small (the smallest?) piece of stand-alone code that demonstrates your trouble
DaleHohm Posted December 7, 2007 Author Posted December 7, 2007 A control is a window.All right then. With that knowledge, I can get the classname and this gives me what I need: #Include <WinAPI.au3> ShellExecute("notepad.exe") WinWaitActive("Untitled - Notepad") $window_handle = WinGetHandle("Untitled - Notepad", "") $control_handle = ControlGetHandle("Untitled - Notepad", "", "Edit1") ConsoleWrite(_WinAPI_GetClassName($window_handle) & @CR) ConsoleWrite(_WinAPI_GetClassName($control_handle) & @CR) Thanks Valik Dale Free Internet Tools: DebugBar, AutoIt IE Builder, HTTP UDF, MODIV2, IE Developer Toolbar, IEDocMon, Fiddler, HTML Validator, WGet, curl MSDN docs: InternetExplorer Object, Document Object, Overviews and Tutorials, DHTML Objects, DHTML Events, WinHttpRequest, XmlHttpRequest, Cross-Frame Scripting, Office object model Automate input type=file (Related) Alternative to _IECreateEmbedded? better: _IECreatePseudoEmbedded Better Better? IE.au3 issues with Vista - Workarounds SciTe Debug mode - it's magic: #AutoIt3Wrapper_run_debug_mode=Y Doesn't work needs to be ripped out of the troubleshooting lexicon. It means that what you tried did not produce the results you expected. It begs the questions 1) what did you try?, 2) what did you expect? and 3) what happened instead? Reproducer: a small (the smallest?) piece of stand-alone code that demonstrates your trouble
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now