Click here to Skip to main content
15,916,463 members
Home / Discussions / C#
   

C#

 
GeneralRe: question about Arrays Pin
Green Fuze17-Oct-05 7:10
Green Fuze17-Oct-05 7:10 
GeneralRe: question about Arrays Pin
Dan Neely17-Oct-05 7:56
Dan Neely17-Oct-05 7:56 
GeneralRe: question about Arrays Pin
S. Senthil Kumar17-Oct-05 15:18
S. Senthil Kumar17-Oct-05 15:18 
AnswerRe: question about Arrays Pin
futbolkeeper17-Oct-05 16:08
futbolkeeper17-Oct-05 16:08 
QuestionUrgent Regualr Expression Help Needed Pin
Brian Van Beek17-Oct-05 5:14
Brian Van Beek17-Oct-05 5:14 
AnswerRe: Urgent Regualr Expression Help Needed Pin
User 665817-Oct-05 6:21
User 665817-Oct-05 6:21 
GeneralRe: Urgent Regualr Expression Help Needed Pin
Brian Van Beek17-Oct-05 7:06
Brian Van Beek17-Oct-05 7:06 
GeneralRe: Urgent Regualr Expression Help Needed Pin
leppie17-Oct-05 8:15
leppie17-Oct-05 8:15 
GeneralRe: Urgent Regualr Expression Help Needed Pin
User 665817-Oct-05 9:06
User 665817-Oct-05 9:06 
GeneralRe: Urgent Regualr Expression Help Needed Pin
Daniel Turini17-Oct-05 9:44
Daniel Turini17-Oct-05 9:44 
AnswerRe: Urgent Regualr Expression Help Needed Pin
leppie17-Oct-05 10:22
leppie17-Oct-05 10:22 
QuestionDrawing over a picturebox Pin
budidharma17-Oct-05 4:55
budidharma17-Oct-05 4:55 
AnswerRe: Drawing over a picturebox Pin
Rick Beideman17-Oct-05 6:49
Rick Beideman17-Oct-05 6:49 
Questionadd a delay before updating a file. Pin
Dan Neely17-Oct-05 4:38
Dan Neely17-Oct-05 4:38 
AnswerRe: add a delay before updating a file. Pin
S. Senthil Kumar17-Oct-05 5:07
S. Senthil Kumar17-Oct-05 5:07 
GeneralRe: add a delay before updating a file. Pin
Dan Neely17-Oct-05 6:56
Dan Neely17-Oct-05 6:56 
GeneralRe: add a delay before updating a file. Pin
S. Senthil Kumar17-Oct-05 15:14
S. Senthil Kumar17-Oct-05 15:14 
QuestionUpdate Form while Retaining Access to It Pin
thepolishguy17-Oct-05 3:40
thepolishguy17-Oct-05 3:40 
QuestionCreate an object dynamically for COM component witout reflection Pin
Member 227350917-Oct-05 3:14
Member 227350917-Oct-05 3:14 
AnswerRe: Create an object dynamically for COM component witout reflection Pin
S. Senthil Kumar17-Oct-05 5:27
S. Senthil Kumar17-Oct-05 5:27 
Questionconvert int to hexadecimal Pin
Sasuko17-Oct-05 3:10
Sasuko17-Oct-05 3:10 
AnswerRe: convert int to hexadecimal Pin
Rob Philpott17-Oct-05 5:10
Rob Philpott17-Oct-05 5:10 
AnswerRe: convert int to hexadecimal Pin
S. Senthil Kumar17-Oct-05 5:31
S. Senthil Kumar17-Oct-05 5:31 
QuestionMocking interface methods with 2 dimensional array return types Pin
Anonymous17-Oct-05 3:06
Anonymous17-Oct-05 3:06 
QuestionReminders Pin
PaulaM17-Oct-05 2:36
PaulaM17-Oct-05 2:36 
hi my C#.net application has a Reminder pop up where a user enters reminder dates,name etc.
how do i make the reminder pop up from the date and time that it was set to?
here's what ive done
DataTable dtRemNow

conn=connection

SqlDatadapter da= new SqlDataAdapter("select * from reminders",conn);

da.fill(dtRemNow )

if(dtRemNow.Rows.Count > 0)
{
foreach(DataRow row1 in dtRemNow.Rows)
{
string strReminder = row1["rem date"].ToString;
if (strReminder .Length == 0) continue;
// get the date the reminder is due
DateTime dt = DateTime.Parse(strReminder);
TimeSpan tsRem = dt - DateTime.Now;
if(tsRem.TotalMilliseconds == 0)
{
}

}
}
dtRemNow.AcceptChanges();
if(dtRemNow.Rows.Count>0)
{
//show pop up for reminder
form.Popup(dtRemNow);
}
the pop up does not showConfused | :confused:



i would really appreciate if any of you can provide articles that include source code and examples
examples on creating reminder applications.

regards paula

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.