Click here to Skip to main content
15,897,113 members
Home / Discussions / C#
   

C#

 
GeneralRe: Receive Net Sends within application Pin
Ed.Poore30-Mar-06 12:11
Ed.Poore30-Mar-06 12:11 
GeneralRe: Receive Net Sends within application Pin
sharmaabhishek30-Mar-06 12:43
sharmaabhishek30-Mar-06 12:43 
GeneralRe: Receive Net Sends within application Pin
kayhustle31-Mar-06 4:13
kayhustle31-Mar-06 4:13 
GeneralRe: Receive Net Sends within application Pin
Ed.Poore31-Mar-06 6:03
Ed.Poore31-Mar-06 6:03 
QuestionControl advice wanted Pin
Small Rat30-Mar-06 7:27
Small Rat30-Mar-06 7:27 
AnswerRe: Control advice wanted Pin
Ed.Poore30-Mar-06 8:27
Ed.Poore30-Mar-06 8:27 
Question.NET winform application. email function is pointed to the SMTP server of Linux. But it showns "Pickup" folder is not existed. Pin
miaomiaoga30-Mar-06 6:40
miaomiaoga30-Mar-06 6:40 
QuestionTask Scheduler problem Pin
Mridang Agarwalla30-Mar-06 6:36
Mridang Agarwalla30-Mar-06 6:36 
I downloaded an excellent cls from CP. Its a Task Scheduler[^]. Its an exceelnt class too. Its seems pretty popular considering the numbr of views so I'm sure one of you must be having an answer to my problem. Could someonel tell me how to modify a trigger of a task after the task has been saved. This is the only code snippet i could find:

// Get a ScheduledTasks object for the local computer.<br />
ScheduledTasks st = new ScheduledTasks();<br />
<br />
// Open a task we're interested in<br />
Task task = st.OpenTask("D checker");<br />
<br />
// Be sure the task was found before proceeding<br />
if (task != null) {<br />
    // Enumerate each trigger in the TriggerList of this task<br />
    foreach (Trigger tr in task.Triggers) {<br />
        // If this trigger has a start time, change it to 4:15 AM.<br />
        if (tr is StartableTrigger) {<br />
            (tr as StartableTrigger).StartHour = 4;<br />
            (tr as StartableTrigger).StartMinute = 15;<br />
        }<br />
    }<br />
    task.Save();<br />
    task.Close();<br />
}<br />
st.Dispose();


But this code doesnt let me change the other properties of a trigger. How do i do that?
AnswerRe: Task Scheduler problem Pin
leppie30-Mar-06 19:31
leppie30-Mar-06 19:31 
Questioncreating a setup app Pin
Manu_8130-Mar-06 6:23
Manu_8130-Mar-06 6:23 
AnswerRe: creating a setup app Pin
Judah Gabriel Himango30-Mar-06 6:33
sponsorJudah Gabriel Himango30-Mar-06 6:33 
GeneralRe: creating a setup app Pin
Manu_8130-Mar-06 6:54
Manu_8130-Mar-06 6:54 
GeneralRe: creating a setup app Pin
Judah Gabriel Himango30-Mar-06 7:10
sponsorJudah Gabriel Himango30-Mar-06 7:10 
Question..enter elements Pin
KORCARI30-Mar-06 5:35
KORCARI30-Mar-06 5:35 
GeneralRe: ..enter elements Pin
George L. Jackson30-Mar-06 6:17
George L. Jackson30-Mar-06 6:17 
GeneralRe: ..enter elements Pin
KORCARI30-Mar-06 6:28
KORCARI30-Mar-06 6:28 
GeneralRe: ..enter elements Pin
Ed.Poore30-Mar-06 8:29
Ed.Poore30-Mar-06 8:29 
QuestionCtrl+F not working??? Pin
lupin9930-Mar-06 3:55
lupin9930-Mar-06 3:55 
AnswerRe: Ctrl+F not working??? Pin
Le centriste30-Mar-06 4:01
Le centriste30-Mar-06 4:01 
QuestionText/Log Files Pin
velkropie30-Mar-06 3:41
velkropie30-Mar-06 3:41 
AnswerRe: Text/Log Files Pin
Le centriste30-Mar-06 3:54
Le centriste30-Mar-06 3:54 
GeneralRe: Text/Log Files Pin
velkropie30-Mar-06 15:13
velkropie30-Mar-06 15:13 
Questionconvert list of coefficients.... Pin
KORCARI30-Mar-06 3:38
KORCARI30-Mar-06 3:38 
AnswerRe: convert list of coefficients.... Pin
Robert Rohde30-Mar-06 4:10
Robert Rohde30-Mar-06 4:10 
QuestionScale Microsoft.Ink Pin
realmontanakid30-Mar-06 3:30
realmontanakid30-Mar-06 3:30 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.