Click here to Skip to main content
15,905,427 members
Home / Discussions / C#
   

C#

 
AnswerRe: Referencing dll built in VS2005 to VS2003 Pin
Judah Gabriel Himango20-Dec-05 4:01
sponsorJudah Gabriel Himango20-Dec-05 4:01 
GeneralRe: Referencing dll built in VS2005 to VS2003 Pin
Jared Parsons20-Dec-05 4:48
Jared Parsons20-Dec-05 4:48 
Questiondetermine whether a driver is a print driver or a fax driver Pin
cobra200520-Dec-05 3:06
cobra200520-Dec-05 3:06 
AnswerRe: determine whether a driver is a print driver or a fax driver Pin
Curtis Schlak.20-Dec-05 4:35
Curtis Schlak.20-Dec-05 4:35 
GeneralRe: determine whether a driver is a print driver or a fax driver Pin
cobra200520-Dec-05 6:14
cobra200520-Dec-05 6:14 
GeneralRe: determine whether a driver is a print driver or a fax driver Pin
cobra200520-Dec-05 6:15
cobra200520-Dec-05 6:15 
QuestionLeave event for Data Grid TextBox Pin
Taimoor Mirza20-Dec-05 3:04
Taimoor Mirza20-Dec-05 3:04 
Questionneed some DateTime help Pin
Joshua Lunsford20-Dec-05 2:55
Joshua Lunsford20-Dec-05 2:55 
sorry, cant get my brain working this morning.

the logical question I need my program to figure out is :
The X day of every Y month(s) with a Startdate of Z and a (Enddate of W OR occur V times)

this is my start:
<code>string matchpattern2 = "(0[1-9]|[12][0-9]|2[08])";
Regex re2 = new Regex(matchpattern2);
if(re2.Match(monthly1TxtBox1.Text.ToString()).Success == true)
{

int intDays = 0;
TimeSpan tsWeekly = endDateTime.Date.Subtract(startDateTime);
intDays = tsWeekly.Days;
DateTime[] datearray = new DateTime[intDays];
for(int x=0; x<intDays; x++)
{
datearray[x] = startDateTime.AddDays(x);
}
Array.Sort(datearray);
//DoTheWork
}</code>
anyone experienced with doing something like this?

-- modified at 9:06 Tuesday 20th December, 2005
AnswerRe: need some DateTime help Pin
Judah Gabriel Himango20-Dec-05 7:22
sponsorJudah Gabriel Himango20-Dec-05 7:22 
GeneralRe: need some DateTime help Pin
Joshua Lunsford20-Dec-05 7:48
Joshua Lunsford20-Dec-05 7:48 
GeneralRe: need some DateTime help Pin
Joshua Lunsford21-Dec-05 5:45
Joshua Lunsford21-Dec-05 5:45 
AnswerRe: need some DateTime help Pin
Roy Heil20-Dec-05 7:22
professionalRoy Heil20-Dec-05 7:22 
GeneralRe: need some DateTime help Pin
Joshua Lunsford20-Dec-05 7:45
Joshua Lunsford20-Dec-05 7:45 
GeneralRe: need some DateTime help Pin
Roy Heil27-Dec-05 9:11
professionalRoy Heil27-Dec-05 9:11 
Questionhow to access bookmark in C# web application Pin
narendrakumarp20-Dec-05 2:54
narendrakumarp20-Dec-05 2:54 
QuestionHow to access a password protected UNC address? Pin
Zishan Haider20-Dec-05 2:42
Zishan Haider20-Dec-05 2:42 
AnswerRe: How to access a password protected UNC address? Pin
narendrakumarp20-Dec-05 2:57
narendrakumarp20-Dec-05 2:57 
GeneralRe: How to access a password protected UNC address? Pin
Zishan Haider20-Dec-05 3:08
Zishan Haider20-Dec-05 3:08 
GeneralRe: How to access a password protected UNC address? Pin
Judah Gabriel Himango20-Dec-05 3:58
sponsorJudah Gabriel Himango20-Dec-05 3:58 
AnswerRe: How to access a password protected UNC address? Pin
Dave Kreskowiak20-Dec-05 5:20
mveDave Kreskowiak20-Dec-05 5:20 
GeneralRe: How to access a password protected UNC address? Pin
Zishan Haider20-Dec-05 6:30
Zishan Haider20-Dec-05 6:30 
GeneralRe: How to access a password protected UNC address? Pin
Dave Kreskowiak20-Dec-05 18:31
mveDave Kreskowiak20-Dec-05 18:31 
GeneralRe: How to access a password protected UNC address? Pin
Zishan Haider22-Dec-05 1:52
Zishan Haider22-Dec-05 1:52 
QuestionFolder View(Arrange Icons By) Pin
rakesh_nits20-Dec-05 1:34
rakesh_nits20-Dec-05 1:34 
QuestionExecuting Javascript based on a condition in codebehind Pin
Krugger40420-Dec-05 1:01
Krugger40420-Dec-05 1:01 

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.