Click here to Skip to main content
15,902,198 members
Home / Discussions / C#
   

C#

 
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
AnswerRe: Reminder Project [modified] Pin
Adam.m.Nelson3-Oct-07 8:24
Adam.m.Nelson3-Oct-07 8:24 
GeneralRe: Reminder Project Pin
MumbleB3-Oct-07 9:01
MumbleB3-Oct-07 9:01 
GeneralRe: Reminder Project Pin
Adam.m.Nelson3-Oct-07 9:52
Adam.m.Nelson3-Oct-07 9:52 
GeneralRe: Reminder Project Pin
MumbleB3-Oct-07 20:24
MumbleB3-Oct-07 20:24 
GeneralRe: Reminder Project Pin
Adam.m.Nelson4-Oct-07 2:36
Adam.m.Nelson4-Oct-07 2:36 
QuestionCreating own DLL for use with DllImport [modified] Pin
Kristian Sixhøj3-Oct-07 7:43
Kristian Sixhøj3-Oct-07 7:43 
AnswerRe: Creating own DLL for use with DllImport Pin
Anthony Mushrow3-Oct-07 12:58
professionalAnthony Mushrow3-Oct-07 12:58 
GeneralRe: Creating own DLL for use with DllImport Pin
Kristian Sixhøj4-Oct-07 4:47
Kristian Sixhøj4-Oct-07 4:47 
QuestionHow do you set the Selected Item in a DataGridViewComboBoxColumn cell? [modified] Pin
Adam.m.Nelson3-Oct-07 7:41
Adam.m.Nelson3-Oct-07 7:41 
QuestionBound datagridvewview column ordering confusion Pin
Matthew Cuba3-Oct-07 7:39
Matthew Cuba3-Oct-07 7:39 
AnswerRe: Bound datagridvewview column ordering confusion Pin
Adam.m.Nelson3-Oct-07 8:03
Adam.m.Nelson3-Oct-07 8:03 
QuestionbindingNavigatorDeleteItem_Click Pin
bluegrassman3-Oct-07 7:11
bluegrassman3-Oct-07 7:11 
QuestionMDI Pin
sajid.salim.khan3-Oct-07 6:51
sajid.salim.khan3-Oct-07 6:51 
QuestionC# howto CyclePort Usb device ? Pin
etaofodete3-Oct-07 6:23
etaofodete3-Oct-07 6:23 
AnswerRe: C# howto CyclePort Usb device ? Pin
VirtualVoid.NET3-Oct-07 23:42
VirtualVoid.NET3-Oct-07 23:42 
QuestionSaving an self painted image from a pictureBox Pin
MyPiano3-Oct-07 6:08
MyPiano3-Oct-07 6:08 
AnswerRe: Saving an self painted image from a pictureBox Pin
Ajay.k_Singh3-Oct-07 7:02
Ajay.k_Singh3-Oct-07 7:02 

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.