Link to home
Start Free TrialLog in
Avatar of RadikalQ3
RadikalQ3Flag for Spain

asked on

Open the properties dialog of a Scheduled Task

Hi Delphimaniacs!

I need open the properties dialog of a scheduled task.

For example, in Windows I will open this dialog with:

Start Button -> Programs -> Accesories -> System Tools -> Schedule Task

And then, select a Task and pressing with the right button, select Properties.

I need invoque this dialog for a know task from delphi.

With this code, I can open the scheduler, but I need open the properties of a certain task...

  ShellExecute( Handle,nil,
                '::{20D04FE0-3AEA-1069-A2D8-08002B30309D}'+
                '\::{21EC2020-3AEA-1069-A2DD-08002B30309D}'+
                '\::{D6277990-4C6A-11CF-8D87-00AA0060F5BF}',
                '','',SW_SHOWNORMAL);

Someone has an idea?
Avatar of frize
frize
Flag of Algeria image

see this beatiful component :
http://www.sicomponents.com/taskscheduler.html
i think that will help you
ASKER CERTIFIED SOLUTION
Avatar of Russell Libby
Russell Libby
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of RadikalQ3

ASKER

Wow!... you are the man! :)
Thanks