Click here to Skip to main content
15,917,565 members
Home / Discussions / C#
   

C#

 
AnswerRe: single exe with multiple users -> Any known issues??? Pin
Russell Jones5-Oct-07 2:53
Russell Jones5-Oct-07 2:53 
GeneralRe: single exe with multiple users -> Any known issues??? Pin
Charith Jayasundara7-Oct-07 18:21
Charith Jayasundara7-Oct-07 18:21 
Questionbreak point problem Pin
P_Elza5-Oct-07 0:41
P_Elza5-Oct-07 0:41 
AnswerRe: break point problem Pin
Jacky Yiu5-Oct-07 0:44
Jacky Yiu5-Oct-07 0:44 
AnswerRe: break point problem Pin
Christian Graus5-Oct-07 1:09
protectorChristian Graus5-Oct-07 1:09 
GeneralRe: break point problem Pin
P_Elza5-Oct-07 1:11
P_Elza5-Oct-07 1:11 
QuestionBook Marks Ok Word Document Using C# Pin
Venki565-Oct-07 0:00
Venki565-Oct-07 0:00 
AnswerRe: Book Marks Ok Word Document Using C# Pin
Pete O'Hanlon5-Oct-07 2:15
mvePete O'Hanlon5-Oct-07 2:15 
QuestionRunning my site in remote Pin
confusedme4-Oct-07 23:50
confusedme4-Oct-07 23:50 
AnswerRe: Running my site in remote Pin
Christian Graus4-Oct-07 23:58
protectorChristian Graus4-Oct-07 23:58 
GeneralRe: Running my site in remote Pin
confusedme5-Oct-07 0:28
confusedme5-Oct-07 0:28 
GeneralRe: Running my site in remote Pin
Christian Graus5-Oct-07 1:07
protectorChristian Graus5-Oct-07 1:07 
AnswerRe: Running my site in remote Pin
Jacky Yiu5-Oct-07 0:28
Jacky Yiu5-Oct-07 0:28 
GeneralRe: Running my site in remote Pin
confusedme5-Oct-07 0:34
confusedme5-Oct-07 0:34 
GeneralRe: Running my site in remote Pin
Jacky Yiu5-Oct-07 0:38
Jacky Yiu5-Oct-07 0:38 
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 
hai all
i have 2 date column, receive date n due date. RD should be greater than DD. am entering the date in the form dd/mm/yyyy. and For validation am using a function validatedate. the code is given below.
string dd=Convert.ToString(fld.Month);
string dd1=Convert.ToString(fld1.Month);
string mm=Convert.ToString(fld.Day);
string mm1=Convert.ToString(fld1.Day);
string yy=Convert.ToString(fld.Year);
string yy1=Convert.ToString(fld1.Year);
string date=mm+"/"+dd+"/"+yy;
string date1=mm1+"/"+dd1+"/"+yy1;
if((String.Compare(yy,yy1)>0)||(String.Compare(mm,mm1)>0)||((String.Compare(dd,dd1)>0)&&(String.Compare(mm,mm1)==0))||((String.Compare(dd,dd1)<=0)&&(String.Compare(mm,mm1)>0)))
{
	lblmsg.Text="error";		
	RegisterStartupScript("startup","<script>window.alert('Error:"+date.ToString()+">"+date1.ToString()+" ')</script>");
}
else
{
RegisterStartupScript("startup","<script>window.alert('correct:"+date1.ToString()+">"+date.ToString()+" ')</script>");
}

but for 1,2,3,up to 9 it is taking only one digit and not validation properly. how to include 0 also along with the date.
plz help me.
plz......
i poted a quest before. but didnt get any reply. so i tried it in this format. plz do help meConfused | :confused:
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 
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 

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.