Click here to Skip to main content
15,889,281 members
Home / Discussions / C#
   

C#

 
GeneralRe: Running my site in remote Pin
confusedme5-Oct-07 0:52
confusedme5-Oct-07 0:52 
GeneralRe: Running my site in remote Pin
Jacky Yiu5-Oct-07 1:13
Jacky Yiu5-Oct-07 1:13 
Questiondate validation plz help me................ plz Pin
P_Elza4-Oct-07 23:23
P_Elza4-Oct-07 23:23 
AnswerRe: date validation plz help me................ plz Pin
Christian Graus4-Oct-07 23:30
protectorChristian Graus4-Oct-07 23:30 
GeneralRe: date validation plz help me................ plz Pin
P_Elza4-Oct-07 23:50
P_Elza4-Oct-07 23:50 
GeneralRe: date validation plz help me................ plz Pin
Christian Graus4-Oct-07 23:56
protectorChristian Graus4-Oct-07 23:56 
GeneralRe: date validation plz help me................ plz Pin
P_Elza5-Oct-07 0:11
P_Elza5-Oct-07 0:11 
GeneralRe: date validation plz help me................ plz Pin
Jacky Yiu5-Oct-07 0:21
Jacky Yiu5-Oct-07 0:21 
will it become easy to use CompareTo in your case?

two DateTime object:
DateTime dt1 = new DateTime(2007, 10, 2);
DateTime dt2 = new DateTime(2007, 10, 22);

int result = dt1.CompareTo(dt2);
if (result == 1)
{
//dt1 is after dt2
}
else if (result == -1)
{
//dt2 is after dt1
}
else if (result == 0)
{
//dt1 is equal to dt2
}

GeneralRe: date validation plz help me................ plz Pin
Guffa5-Oct-07 0:25
Guffa5-Oct-07 0:25 
AnswerRe: date validation plz help me................ plz Pin
V.5-Oct-07 2:28
professionalV.5-Oct-07 2:28 
QuestionXML Schema aliases and comments Pin
Lutosław4-Oct-07 23:16
Lutosław4-Oct-07 23:16 
QuestionEmbedding icons in windows application Pin
J a a n s4-Oct-07 23:15
professionalJ a a n s4-Oct-07 23:15 
AnswerRe: Embedding icons in windows application Pin
sthotakura4-Oct-07 23:25
sthotakura4-Oct-07 23:25 
Questionsend & receive SMS in C# using USB Port Pin
kasun darshana jayasekara4-Oct-07 22:57
kasun darshana jayasekara4-Oct-07 22:57 
AnswerRe: send & receive SMS in C# using USB Port Pin
Christian Graus4-Oct-07 23:15
protectorChristian Graus4-Oct-07 23:15 
QuestionRe: send & receive SMS in C# using USB Port Pin
ESTAN5-Oct-07 3:37
ESTAN5-Oct-07 3:37 
QuestionUploding File in window Application Pin
shahbaz rehman4-Oct-07 21:20
shahbaz rehman4-Oct-07 21:20 
AnswerRe: Uploding File in window Application Pin
il_masacratore4-Oct-07 21:45
il_masacratore4-Oct-07 21:45 
QuestionProcessStart and COM port Pin
il_masacratore4-Oct-07 21:19
il_masacratore4-Oct-07 21:19 
AnswerRe: ProcessStart and COM port Pin
TJoe5-Oct-07 2:33
TJoe5-Oct-07 2:33 
Questionfind all textbox in a form at runtime Pin
my8884-Oct-07 20:41
my8884-Oct-07 20:41 
AnswerRe: find all textbox in a form at runtime Pin
Christian Graus4-Oct-07 20:43
protectorChristian Graus4-Oct-07 20:43 
GeneralRe: find all textbox in a form at runtime Pin
darkelv4-Oct-07 21:19
darkelv4-Oct-07 21:19 
GeneralRe: find all textbox in a form at runtime Pin
Christian Graus4-Oct-07 22:03
protectorChristian Graus4-Oct-07 22:03 
QuestionHelp to choose project Pin
M. Ahmed4-Oct-07 20:30
M. Ahmed4-Oct-07 20:30 

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.