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

C#

 
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

AnswerRe: Reminders Pin
Andy Brummer17-Oct-05 5:46
sitebuilderAndy Brummer17-Oct-05 5:46 
Questionhow to use the System.IO.IsolatedStorage Pin
Sasuko17-Oct-05 2:32
Sasuko17-Oct-05 2:32 
AnswerRe: how to use the System.IO.IsolatedStorage Pin
Dave Kreskowiak17-Oct-05 5:32
mveDave Kreskowiak17-Oct-05 5:32 
QuestionAdd Command bar in Outlook Pin
Talktorajeev17-Oct-05 1:07
Talktorajeev17-Oct-05 1:07 
QuestionProblem with webservice in production env Pin
Dario Solera17-Oct-05 0:53
Dario Solera17-Oct-05 0:53 
AnswerRe: Problem with webservice in production env Pin
leppie17-Oct-05 0:59
leppie17-Oct-05 0:59 
GeneralRe: Problem with webservice in production env Pin
Dario Solera17-Oct-05 1:03
Dario Solera17-Oct-05 1:03 
GeneralRe: Problem with webservice in production env Pin
Guffa17-Oct-05 1:16
Guffa17-Oct-05 1:16 
QuestionHow to get 4 bytes int from a byte[] array? Pin
rushing17-Oct-05 0:26
rushing17-Oct-05 0:26 

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.