Click here to Skip to main content
15,891,316 members
Home / Discussions / C#
   

C#

 
AnswerRe: Appending Multiple RTF FIles Together for Printout Pin
Thomas Stockwell30-May-08 10:43
professionalThomas Stockwell30-May-08 10:43 
QuestionIs it possible to change Intranet Zone to Full Trust thrue code? Pin
Phrone29-May-08 8:40
Phrone29-May-08 8:40 
AnswerRe: Is it possible to change Intranet Zone to Full Trust thrue code? Pin
Gareth H29-May-08 9:00
Gareth H29-May-08 9:00 
AnswerRe: Is it possible to change Intranet Zone to Full Trust thrue code? Pin
SomeGuyThatIsMe29-May-08 9:01
SomeGuyThatIsMe29-May-08 9:01 
RantRe: Is it possible to change Intranet Zone to Full Trust thrue code? Pin
Dan Neely29-May-08 9:58
Dan Neely29-May-08 9:58 
AnswerRe: Is it possible to change Intranet Zone to Full Trust thrue code? Pin
Judah Gabriel Himango29-May-08 10:28
sponsorJudah Gabriel Himango29-May-08 10:28 
RantI can't help myself Pin
Anthony Mushrow29-May-08 12:25
professionalAnthony Mushrow29-May-08 12:25 
Questionindex was ouside the bounds of the array Pin
NewToAspDotNet29-May-08 8:16
NewToAspDotNet29-May-08 8:16 
Hi All,
I have a timer with a interval of 1000 ms and a eventhandler :
timer_updateinterval = new System.Windows.Forms.Timer();
timer_updateinterval.Interval = 1000;
timer_updateinterval.Start();
timer_updateinterval.Tick += new EventHandler(RunTik);

in my RunTik methode i m checking the DateTime.now time and when it's equal to the DateAndTime setted on a lable, there most happen some action:

private void RunTik(object sender, EventArgs e)
{

DateTime now = DateTime.Now;
DateTime start = Convert.ToDateTime(lblStarttime.Text);

if (now.ToString() == start.ToString() | now > start)
{
///do something
}
}
Bud i m gettin the error: index was ouside the bounds of the array on the line:
DateTime now = DateTime.Now;

Can anyone tell my what the problem is and how to slove this?

Thanx.
AnswerRe: index was ouside the bounds of the array Pin
Gareth H29-May-08 8:56
Gareth H29-May-08 8:56 
QuestionIs there a CPU object in .NET 3.5? Pin
dubayou29-May-08 7:35
dubayou29-May-08 7:35 
Questioncreate trigger in C# Pin
Member 400849229-May-08 6:39
Member 400849229-May-08 6:39 
AnswerRe: create trigger in C# Pin
Giorgi Dalakishvili29-May-08 7:34
mentorGiorgi Dalakishvili29-May-08 7:34 
QuestionWeird deserialization error message Pin
Alan Balkany29-May-08 6:32
Alan Balkany29-May-08 6:32 
AnswerRe: Weird deserialization error message Pin
Alan Balkany2-Jun-08 8:08
Alan Balkany2-Jun-08 8:08 
QuestionDataGridView Text Box Column Selection Pin
paas29-May-08 6:32
paas29-May-08 6:32 
QuestionLinkedIn APIs Pin
sunit_8229-May-08 3:58
sunit_8229-May-08 3:58 
AnswerRe: LinkedIn APIs Pin
benjymous29-May-08 5:01
benjymous29-May-08 5:01 
AnswerRe: LinkedIn APIs Pin
Vasudevan Deepak Kumar29-May-08 18:24
Vasudevan Deepak Kumar29-May-08 18:24 
QuestionQuery Analyzer Pin
ellllllllie29-May-08 3:53
ellllllllie29-May-08 3:53 
AnswerRe: Query Analyzer Pin
benjymous29-May-08 5:03
benjymous29-May-08 5:03 
AnswerRe: Query Analyzer Pin
darkelv29-May-08 5:23
darkelv29-May-08 5:23 
GeneralRe: Query Analyzer Pin
ellllllllie29-May-08 6:12
ellllllllie29-May-08 6:12 
GeneralRe: Query Analyzer Pin
Zoltan Balazs29-May-08 6:16
Zoltan Balazs29-May-08 6:16 
AnswerRe: Query Analyzer Pin
Pete O'Hanlon29-May-08 10:02
mvePete O'Hanlon29-May-08 10:02 
QuestionChanging columns of data Pin
Karlos_V29-May-08 3:18
Karlos_V29-May-08 3:18 

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.