Click here to Skip to main content
15,917,177 members
Home / Discussions / C#
   

C#

 
QuestionMSI Launch Directory Pin
Polymorpher3-Oct-07 10:40
Polymorpher3-Oct-07 10:40 
AnswerRe: MSI Launch Directory Pin
Dave Kreskowiak9-Oct-09 12:25
mveDave Kreskowiak9-Oct-09 12:25 
QuestionWSDL Namespaces Pin
pdalbe013-Oct-07 10:39
pdalbe013-Oct-07 10:39 
QuestionChange Registry Key Name [modified] Pin
Dino2Dino3-Oct-07 10:07
Dino2Dino3-Oct-07 10:07 
AnswerRe: Change Registry Key Name Pin
ChrisKo3-Oct-07 13:31
ChrisKo3-Oct-07 13:31 
GeneralRe: Change Registry Key Name Pin
ChrisKo3-Oct-07 13:59
ChrisKo3-Oct-07 13:59 
GeneralRe: Change Registry Key Name Pin
Dino2Dino4-Oct-07 10:04
Dino2Dino4-Oct-07 10:04 
GeneralRe: Change Registry Key Name Pin
ChrisKo4-Oct-07 10:23
ChrisKo4-Oct-07 10:23 
QuestionRe: Change Registry Key value/Type/Data fields. Pin
Dino2Dino8-Oct-07 11:30
Dino2Dino8-Oct-07 11:30 
QuestionProperty Grid Help Position Pin
greba3-Oct-07 9:53
greba3-Oct-07 9:53 
AnswerRe: Property Grid Help Position Pin
TJoe3-Oct-07 10:33
TJoe3-Oct-07 10:33 
Questiondropdownlist initial value Pin
anuradha.rrao3-Oct-07 9:16
anuradha.rrao3-Oct-07 9:16 
AnswerRe: dropdownlist initial value Pin
Pete O'Hanlon3-Oct-07 9:23
mvePete O'Hanlon3-Oct-07 9:23 
GeneralRe: dropdownlist initial value Pin
anuradha.rrao3-Oct-07 9:27
anuradha.rrao3-Oct-07 9:27 
GeneralRe: dropdownlist initial value Pin
Pete O'Hanlon3-Oct-07 9:35
mvePete O'Hanlon3-Oct-07 9:35 
GeneralRe: dropdownlist Pin
anuradha.rrao3-Oct-07 9:56
anuradha.rrao3-Oct-07 9:56 
GeneralRe: dropdownlist Pin
pmarfleet3-Oct-07 10:53
pmarfleet3-Oct-07 10:53 
GeneralRe: dropdownlist Pin
anuradha.rrao3-Oct-07 22:44
anuradha.rrao3-Oct-07 22:44 
GeneralRe: dropdownlist Pin
pmarfleet3-Oct-07 22:53
pmarfleet3-Oct-07 22:53 
GeneralRe: dropdownlist Pin
Pete O'Hanlon3-Oct-07 22:24
mvePete O'Hanlon3-Oct-07 22:24 
GeneralRe: dropdownlist Pin
anuradha.rrao3-Oct-07 22:47
anuradha.rrao3-Oct-07 22:47 
Questionbarcode algorithm Pin
memaia3-Oct-07 8:49
memaia3-Oct-07 8:49 
AnswerRe: barcode algorithm Pin
DanB19833-Oct-07 9:09
DanB19833-Oct-07 9:09 
QuestionReminder Project Pin
MumbleB3-Oct-07 7:57
MumbleB3-Oct-07 7:57 
AnswerRe: Reminder Project Pin
kubben3-Oct-07 8:15
kubben3-Oct-07 8:15 
You probably need another varible. Something like
bool sentReminder = false;
if (time == datetime.now && !sendreminder)
{
  sentReminder = true;
//do your thing
}

if (time != datetime.now)
{
  //re-set for next time
  sentReminder = false;
}


Anyway, that is one quick thought on what you could do.

Ben

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.