Click here to Skip to main content
16,005,697 members
Home / Discussions / C#
   

C#

 
QuestionDeveloping a .NET client to copy files from a sharepoint portal server Pin
Nishanth Nair31-Jul-06 1:35
Nishanth Nair31-Jul-06 1:35 
QuestionPrint a batch using Crytal Report Pin
Daminda31-Jul-06 1:18
Daminda31-Jul-06 1:18 
QuestionHow can create .avi files which have different names from capture card in C# Pin
mrtcoskun31-Jul-06 0:56
mrtcoskun31-Jul-06 0:56 
QuestionHow to display Milliseconds along with LongTime Pin
VenkataRamana.Gali31-Jul-06 0:52
VenkataRamana.Gali31-Jul-06 0:52 
AnswerRe: How to display Milliseconds along with LongTime Pin
stancrm31-Jul-06 1:06
stancrm31-Jul-06 1:06 
AnswerRe: How to display Milliseconds along with LongTime Pin
Guffa31-Jul-06 1:20
Guffa31-Jul-06 1:20 
Questiondate problem? help please ... Pin
cmpeng3431-Jul-06 0:49
cmpeng3431-Jul-06 0:49 
AnswerRe: date problem? help please ... Pin
Empires31-Jul-06 1:55
Empires31-Jul-06 1:55 
You could use a CultureInfo instance for formatting as shown below:

DateTime dt = DateTime.Parse("08/01/2006");

// Use the machines current culture.

Console.WriteLine("Current Culture: {0}.", dt.ToString(CultureInfo.CurrentCulture));

// If you want to use another culture without switching your current culture you could try.

Console.WriteLine("English (US) Formatted Date: {0}.", dt.ToString(new CultureInfo("en-US")));
Console.WriteLine("English (GB) Formatted Date: {0}.", dt.ToString(new CultureInfo("en-GB")));

// Output

English (US) Formatted Date: 8/1/2006 12:00:00 AM.
English (GB) Formatted Date: 01/08/2006 00:00:00.
GeneralMessage Closed Pin
31-Jul-06 2:41
cmpeng3431-Jul-06 2:41 
GeneralRe: date problem? help please ... Pin
Stefan Troschuetz31-Jul-06 5:45
Stefan Troschuetz31-Jul-06 5:45 
QuestionHow can Main be a private method Pin
Tony_Joh31-Jul-06 0:36
Tony_Joh31-Jul-06 0:36 
AnswerRe: How can Main be a private method Pin
stancrm31-Jul-06 1:17
stancrm31-Jul-06 1:17 
AnswerRe: How can Main be a private method Pin
Robert Rohde31-Jul-06 2:46
Robert Rohde31-Jul-06 2:46 
QuestionFolder Link in RichtextBox Pin
AB777131-Jul-06 0:25
AB777131-Jul-06 0:25 
AnswerRe: Folder Link in RichtextBox Pin
Judah Gabriel Himango31-Jul-06 5:15
sponsorJudah Gabriel Himango31-Jul-06 5:15 
GeneralRe: Folder Link in RichtextBox Pin
AB777131-Jul-06 17:56
AB777131-Jul-06 17:56 
GeneralRe: Folder Link in RichtextBox Pin
Judah Gabriel Himango1-Aug-06 5:05
sponsorJudah Gabriel Himango1-Aug-06 5:05 
QuestionAccess to exe's custom configuration classes from dll Pin
Phil J Pearson31-Jul-06 0:18
Phil J Pearson31-Jul-06 0:18 
AnswerRe: Access to exe's custom configuration classes from dll Pin
Duncan Edwards Jones31-Jul-06 0:38
professionalDuncan Edwards Jones31-Jul-06 0:38 
GeneralRe: Access to exe's custom configuration classes from dll Pin
Phil J Pearson31-Jul-06 1:50
Phil J Pearson31-Jul-06 1:50 
Questionhow to get the images as output in run time Pin
Kmurthy31-Jul-06 0:13
Kmurthy31-Jul-06 0:13 
AnswerRe: how to get the images as output in run time Pin
Ed.Poore31-Jul-06 1:47
Ed.Poore31-Jul-06 1:47 
GeneralRe: how to get the images as output in run time Pin
Kmurthy31-Jul-06 2:06
Kmurthy31-Jul-06 2:06 
GeneralRe: how to get the images as output in run time Pin
Ed.Poore31-Jul-06 2:42
Ed.Poore31-Jul-06 2:42 
GeneralRe: how to get the images as output in run time Pin
Kmurthy31-Jul-06 18:56
Kmurthy31-Jul-06 18:56 

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.