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

C#

 
GeneralRe: error on receive data from seril port Pin
omid32117-Sep-13 2:20
omid32117-Sep-13 2:20 
GeneralRe: error on receive data from seril port Pin
Dave Kreskowiak17-Sep-13 8:46
mveDave Kreskowiak17-Sep-13 8:46 
QuestionIIS hosted site not working properly in Integrated Mode but working fine in Classic Mode? Pin
Rajesh_DotNet16-Sep-13 19:19
professionalRajesh_DotNet16-Sep-13 19:19 
AnswerRe: IIS hosted site not working properly in Integrated Mode but working fine in Classic Mode? Pin
Richard MacCutchan16-Sep-13 20:44
mveRichard MacCutchan16-Sep-13 20:44 
AnswerRe: IIS hosted site not working properly in Integrated Mode but working fine in Classic Mode? Pin
Abhinav S18-Sep-13 18:54
Abhinav S18-Sep-13 18:54 
QuestionCalculate the date of the previous and next 2 Wednesdays Pin
Member 416962816-Sep-13 5:55
Member 416962816-Sep-13 5:55 
AnswerRe: Calculate the date of the previous and next 2 Wednesdays Pin
Richard MacCutchan16-Sep-13 6:47
mveRichard MacCutchan16-Sep-13 6:47 
AnswerRe: Calculate the date of the previous and next 2 Wednesdays Pin
BillWoodruff16-Sep-13 7:13
professionalBillWoodruff16-Sep-13 7:13 
Try this:
DateTime mondaySept162013 = new DateTime(2013, 9, 16);
DateTime wednesday;

for (int x = 2; x > -13; x = x - 7)
{
    wednesday = mondaySept162013.AddDays(x);
    Console.WriteLine(wednesday.DayOfWeek + " " + wednesday.ToShortDateString());
}

Google CEO, Erich Schmidt: "I keep asking for a product called Serendipity. This product would have access to everything ever written or recorded, know everything the user ever worked on and saved to his or her personal hard drive, and know a whole lot about the user's tastes, friends and predilections." 2004, USA Today interview


modified 16-Sep-13 14:06pm.

AnswerRe: Calculate the date of the previous and next 2 Wednesdays Pin
PIEBALDconsult16-Sep-13 13:59
mvePIEBALDconsult16-Sep-13 13:59 
GeneralRe: Calculate the date of the previous and next 2 Wednesdays Pin
Richard MacCutchan16-Sep-13 20:43
mveRichard MacCutchan16-Sep-13 20:43 
GeneralRe: Calculate the date of the previous and next 2 Wednesdays Pin
Member 416962816-Sep-13 22:51
Member 416962816-Sep-13 22:51 
QuestionDo we need to schedule threads to diff processors? Pin
Srinivas P N V16-Sep-13 2:10
Srinivas P N V16-Sep-13 2:10 
AnswerRe: Do we need to schedule threads to diff processors? Pin
Eddy Vluggen16-Sep-13 2:59
professionalEddy Vluggen16-Sep-13 2:59 
GeneralRe: Do we need to schedule threads to diff processors? Pin
Dholakiya Ankit18-Sep-13 20:46
Dholakiya Ankit18-Sep-13 20:46 
AnswerRe: Do we need to schedule threads to diff processors? Pin
Simon_Whale16-Sep-13 3:38
Simon_Whale16-Sep-13 3:38 
AnswerRe: Do we need to schedule threads to diff processors? Pin
OriginalGriff16-Sep-13 4:07
mveOriginalGriff16-Sep-13 4:07 
GeneralRe: Do we need to schedule threads to diff processors? Pin
TnTinMn16-Sep-13 17:15
TnTinMn16-Sep-13 17:15 
GeneralRe: Do we need to schedule threads to diff processors? Pin
Eddy Vluggen18-Sep-13 6:48
professionalEddy Vluggen18-Sep-13 6:48 
QuestionMessage Closed Pin
15-Sep-13 20:44
xuantruongbn15-Sep-13 20:44 
AnswerRe: CreateKey Pin
Midnight Ahri15-Sep-13 21:15
Midnight Ahri15-Sep-13 21:15 
AnswerRe: CreateKey Pin
Dave Kreskowiak16-Sep-13 1:55
mveDave Kreskowiak16-Sep-13 1:55 
Questionshowing form from bottom wth timer Pin
eng.iris15-Sep-13 15:32
eng.iris15-Sep-13 15:32 
AnswerRe: showing form from bottom wth timer Pin
Midnight Ahri15-Sep-13 16:58
Midnight Ahri15-Sep-13 16:58 
GeneralRe: showing form from bottom wth timer Pin
eng.iris15-Sep-13 17:12
eng.iris15-Sep-13 17:12 
AnswerRe: showing form from bottom wth timer Pin
Midnight Ahri15-Sep-13 18:11
Midnight Ahri15-Sep-13 18:11 

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.