Click here to Skip to main content
15,879,326 members
Home / Discussions / C#
   

C#

 
AnswerRe: how to get date,month and year from datetime format Pin
pmarfleet28-Jan-08 19:45
pmarfleet28-Jan-08 19:45 
AnswerRe: how to get date,month and year from datetime format Pin
Nouman Bhatti28-Jan-08 20:28
Nouman Bhatti28-Jan-08 20:28 
QuestionTool tip in email messages Pin
M. J. Jaya Chitra28-Jan-08 19:23
M. J. Jaya Chitra28-Jan-08 19:23 
GeneralRe: Tool tip in email messages Pin
TJoe30-Jan-08 11:13
TJoe30-Jan-08 11:13 
Generalto get date, month, year from date seperately Pin
trilokharry28-Jan-08 19:16
trilokharry28-Jan-08 19:16 
GeneralCross post Pin
pmarfleet28-Jan-08 19:46
pmarfleet28-Jan-08 19:46 
GeneralRe: to get date, month, year from date seperately Pin
J a a n s28-Jan-08 20:18
professionalJ a a n s28-Jan-08 20:18 
GeneralRe: to get date, month, year from date seperately Pin
Nouman Bhatti28-Jan-08 20:47
Nouman Bhatti28-Jan-08 20:47 
System.DateTime moment = new System.DateTime(
1999, 1, 13, 3, 57, 32, 11);
// Year gets 1999.
int year = moment.Year;

// Month gets 1 (January).
int month = moment.Month;

// Day gets 13.
int day = moment.Day;

// Hour gets 3.
int hour = moment.Hour;

// Minute gets 57.
int minute = moment.Minute;

// Second gets 32.
int second = moment.Second;

// Millisecond gets 11.
int millisecond = moment.Millisecond;
QuestionWord.Comments colelction Pin
PS@Codeproj28-Jan-08 17:06
PS@Codeproj28-Jan-08 17:06 
GeneralRe: Word.Comments colelction Pin
Skippums28-Jan-08 17:39
Skippums28-Jan-08 17:39 
QuestionRe: Word.Comments colelction Pin
fantasy121529-Jan-08 2:31
fantasy121529-Jan-08 2:31 
GeneralRe: Word.Comments colelction Pin
Skippums29-Jan-08 7:40
Skippums29-Jan-08 7:40 
QuestionHow to Set a Windows service for a particular domain user Pin
Narendra Mohan28-Jan-08 17:02
Narendra Mohan28-Jan-08 17:02 
AnswerRe: How to Set a Windows service for a particular domain user Pin
Abhijit Jana28-Jan-08 17:47
professionalAbhijit Jana28-Jan-08 17:47 
Generalasdfadsf Pin
Member 462175228-Jan-08 14:01
Member 462175228-Jan-08 14:01 
GeneralRe: asdfadsf Pin
Member 462175228-Jan-08 14:04
Member 462175228-Jan-08 14:04 
GeneralRe: asdfadsf Pin
Colin Angus Mackay29-Jan-08 0:18
Colin Angus Mackay29-Jan-08 0:18 
GeneralPerformance : String and string !! Confusing, Pin
Nadia Monalisa28-Jan-08 13:26
Nadia Monalisa28-Jan-08 13:26 
GeneralRe: Performance : String and string !! Confusing, Pin
PIEBALDconsult28-Jan-08 13:45
mvePIEBALDconsult28-Jan-08 13:45 
GeneralRe: Performance : String and string !! Confusing, Pin
Paul Conrad28-Jan-08 14:06
professionalPaul Conrad28-Jan-08 14:06 
GeneralRe: Performance : String and string !! Confusing, Pin
Scott Dorman28-Jan-08 17:49
professionalScott Dorman28-Jan-08 17:49 
GeneralRe: Performance : String and string !! Confusing, Pin
Mohan Kumar28-Jan-08 20:26
Mohan Kumar28-Jan-08 20:26 
GeneralRe: Performance : String and string !! Confusing, Pin
Guffa28-Jan-08 20:47
Guffa28-Jan-08 20:47 
GeneralRe: Performance : String and string !! Confusing, Pin
leppie28-Jan-08 21:44
leppie28-Jan-08 21:44 
GeneralRe: Performance : String and string !! Confusing, Pin
Skippums29-Jan-08 7:49
Skippums29-Jan-08 7:49 

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.