12-19-2009, 09:09 PM
Hi - Im a newbie on QM but I am a programmer - just not familiar with QM.
This is a VERY cool little program - Will actually save me alot of time on some simple stuff.
Anyway - My question is - What is the best way to access a windows properties. I noticed that you can get a pointer to a HWND Obj, so it should be possible to access most of the info from that handle. I guess the real question is where in the documentation can i find detailed info on accessing the lower level aspects of a window. More specifically - I'm looking to test the background color of a window and when the background color changes - do something.
Pseudo Code:
if(hwnd->backgroundcolor == #a045e1){
Do something
}
How do I obtain a handle to a window and then test or check for certain properties
TIA
Kevin
This is a VERY cool little program - Will actually save me alot of time on some simple stuff.
Anyway - My question is - What is the best way to access a windows properties. I noticed that you can get a pointer to a HWND Obj, so it should be possible to access most of the info from that handle. I guess the real question is where in the documentation can i find detailed info on accessing the lower level aspects of a window. More specifically - I'm looking to test the background color of a window and when the background color changes - do something.
Pseudo Code:
if(hwnd->backgroundcolor == #a045e1){
Do something
}
How do I obtain a handle to a window and then test or check for certain properties
TIA


Kevin