hi,
I am using windows 7 -32 bit machine with macro scheduler 11 pro. I like to get the items present in 'control panel'(i.e. giving 'control' in 'run' command). FindWindowText or findWindowTextEx didnot help. Can someone help me in getting the items by any other way.
Thanks in advance.
uv.
viewing items in control panel
Moderators: JRL, Dorian (MJT support)
Hello
yuvi4all,
I personally don't understand your question. I saw your post days ago, but didn't reply figuring someone else would understand it.
Could you give an example of what you hope to do with this? Nine days and no answer, It could be eveyone is doing what I did.
If you want to access certain features in the control panel there are ways of doing that through a command line. Just search the internet.
PepsiHog
I personally don't understand your question. I saw your post days ago, but didn't reply figuring someone else would understand it.
Could you give an example of what you hope to do with this? Nine days and no answer, It could be eveyone is doing what I did.
If you want to access certain features in the control panel there are ways of doing that through a command line. Just search the internet.
PepsiHog
Windows 7
PepsiHog. Yep! I drink LOTS of Pepsi (still..in 2024) AND enjoy programming. (That's my little piece of heaven!)
The immensity of the scope of possibilities within Macro Scheduler pushes the user beyond just macros!
PepsiHog. Yep! I drink LOTS of Pepsi (still..in 2024) AND enjoy programming. (That's my little piece of heaven!)
The immensity of the scope of possibilities within Macro Scheduler pushes the user beyond just macros!
- Marcus Tettmar
- Site Admin
- Posts: 7395
- Joined: Thu Sep 19, 2002 3:00 pm
- Location: Dorset, UK
- Contact:
Does this help:
http://www.mjtnet.com/forum/executing-c ... t1584.html
Or maybe you want to extract the text in the window? If so you would need to use one of these commands:
GetWindowTextEx
GetTextAtPoint
GetTextInRect
http://www.mjtnet.com/forum/executing-c ... t1584.html
Or maybe you want to extract the text in the window? If so you would need to use one of these commands:
GetWindowTextEx
GetTextAtPoint
GetTextInRect
Marcus Tettmar
http://mjtnet.com/blog/ | http://twitter.com/marcustettmar
Did you know we are now offering affordable monthly subscriptions for Macro Scheduler Standard?
http://mjtnet.com/blog/ | http://twitter.com/marcustettmar
Did you know we are now offering affordable monthly subscriptions for Macro Scheduler Standard?
- Marcus Tettmar
- Site Admin
- Posts: 7395
- Joined: Thu Sep 19, 2002 3:00 pm
- Location: Dorset, UK
- Contact:
Control panel applets are .cpl files. So you could just see if that .cpl file exists:
IfFileExists>%SYS_DIR%\myapp.cpl
..
Endif
So this gets a list of control panel apps:
GetFileList>%SYS_DIR%\*.cpl,control_panel_apps
Does that help?
IfFileExists>%SYS_DIR%\myapp.cpl
..
Endif
So this gets a list of control panel apps:
GetFileList>%SYS_DIR%\*.cpl,control_panel_apps
Does that help?
Marcus Tettmar
http://mjtnet.com/blog/ | http://twitter.com/marcustettmar
Did you know we are now offering affordable monthly subscriptions for Macro Scheduler Standard?
http://mjtnet.com/blog/ | http://twitter.com/marcustettmar
Did you know we are now offering affordable monthly subscriptions for Macro Scheduler Standard?