Click here to Skip to main content
15,887,027 members
Home / Discussions / C#
   

C#

 
AnswerRe: How Can i Access This Code? Pin
Christian Graus14-Nov-07 19:42
protectorChristian Graus14-Nov-07 19:42 
QuestionHow to create multilingual word documents programetically using c#.net? Pin
Reddy Prakash14-Nov-07 19:32
Reddy Prakash14-Nov-07 19:32 
QuestionHelp regarding FileSystemWatcher Pin
anu8114-Nov-07 19:27
anu8114-Nov-07 19:27 
AnswerRe: Help regarding FileSystemWatcher Pin
Reddy Prakash14-Nov-07 22:28
Reddy Prakash14-Nov-07 22:28 
Questiongetting the date as a folder name Pin
Sunil Wise14-Nov-07 19:19
professionalSunil Wise14-Nov-07 19:19 
AnswerRe: getting the date as a folder name Pin
Andrei Ungureanu14-Nov-07 19:56
Andrei Ungureanu14-Nov-07 19:56 
GeneralRe: getting the date as a folder name Pin
Sunil Wise14-Nov-07 20:16
professionalSunil Wise14-Nov-07 20:16 
AnswerRe: getting the date as a folder name Pin
Guffa14-Nov-07 21:59
Guffa14-Nov-07 21:59 
That is not a good way to format the date, as different dates will share the same folder. For example, the dates 2007-01-11 and 2007-11-01 will both become "1112007".

If you really need to create that format anyway, you can use .ToString("Mdyyyy") to format a date that way.

A better format would be "MMddyyyy", as that would give a unique value for each date, so 2007-01-11 becomes "01112007" and 2007-11-01 becomes "11012007".

An ever better format would be to follow the ISO 8601 order "yyyyMMdd". This is unambigous (as opposed to the dd/MM/yyyy and MM/dd/yyyy formats), and you even get the folders in date order in the explorer. Smile | :)

Experience is the sum of all the mistakes you have done.

Question[Message Deleted] Pin
g_hemanth1714-Nov-07 18:59
g_hemanth1714-Nov-07 18:59 
AnswerRe: I want to enter (+,-,.) values in Texbox in windows based C# applications only numeric Pin
Adeel Chaudhry14-Nov-07 19:16
Adeel Chaudhry14-Nov-07 19:16 
AnswerRe: I want to enter (+,-,.) values in Texbox in windows based C# applications only numeric Pin
madhugurukul14-Nov-07 19:22
madhugurukul14-Nov-07 19:22 
AnswerRe: I want to enter (+,-,.) values in Texbox in windows based C# applications only numeric Pin
Adeel Chaudhry14-Nov-07 19:38
Adeel Chaudhry14-Nov-07 19:38 
GeneralRe: I want to enter (+,-,.) values in Texbox in windows based C# applications only numeric Pin
Christian Graus14-Nov-07 19:55
protectorChristian Graus14-Nov-07 19:55 
GeneralRe: I want to enter (+,-,.) values in Texbox in windows based C# applications only numeric Pin
Christian Graus14-Nov-07 19:56
protectorChristian Graus14-Nov-07 19:56 
GeneralRe: I want to enter (+,-,.) values in Texbox in windows based C# applications only numeric Pin
Adeel Chaudhry14-Nov-07 20:05
Adeel Chaudhry14-Nov-07 20:05 
Questionneed your help Pin
arslanjatt14-Nov-07 18:56
arslanjatt14-Nov-07 18:56 
AnswerRe: need your help Pin
Vasudevan Deepak Kumar14-Nov-07 18:59
Vasudevan Deepak Kumar14-Nov-07 18:59 
GeneralRe: need your help Pin
arslanjatt14-Nov-07 19:10
arslanjatt14-Nov-07 19:10 
AnswerRe: need your help Pin
Adeel Chaudhry14-Nov-07 19:20
Adeel Chaudhry14-Nov-07 19:20 
AnswerRe: need your help Pin
Reddy Prakash14-Nov-07 22:33
Reddy Prakash14-Nov-07 22:33 
QuestionMark Record as Exported in DB Pin
MumbleB14-Nov-07 18:39
MumbleB14-Nov-07 18:39 
AnswerRe: Mark Record as Exported in DB Pin
Adeel Chaudhry14-Nov-07 19:32
Adeel Chaudhry14-Nov-07 19:32 
GeneralRe: Mark Record as Exported in DB Pin
MumbleB14-Nov-07 20:18
MumbleB14-Nov-07 20:18 
QuestionSize of a Web Service Request Pin
Ferudun Atakan14-Nov-07 18:38
Ferudun Atakan14-Nov-07 18:38 
QuestionSetting readonly values in structs within my struct Pin
JoeRip14-Nov-07 18:13
JoeRip14-Nov-07 18:13 

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.