Click here to Skip to main content
15,895,709 members
Home / Discussions / C#
   

C#

 
GeneralRe: Fast algoritme Pin
blimp8211-Jul-06 3:32
blimp8211-Jul-06 3:32 
AnswerRead Wiki Pin
Ennis Ray Lynch, Jr.11-Jul-06 6:11
Ennis Ray Lynch, Jr.11-Jul-06 6:11 
QuestionPassing Message from unmanaged dll to C# Windows Service Pin
Rashid.Mahmood10-Jul-06 22:19
Rashid.Mahmood10-Jul-06 22:19 
AnswerRe: Passing Message from unmanaged dll to C# Windows Service Pin
Nader Elshehabi10-Jul-06 23:43
Nader Elshehabi10-Jul-06 23:43 
GeneralRe: Passing Message from unmanaged dll to C# Windows Service Pin
Rashid.Mahmood10-Jul-06 23:59
Rashid.Mahmood10-Jul-06 23:59 
AnswerRe: Passing Message from unmanaged dll to C# Windows Service Pin
Nader Elshehabi11-Jul-06 1:15
Nader Elshehabi11-Jul-06 1:15 
QuestionFile and text encoding issue Pin
Heinz_10-Jul-06 21:15
Heinz_10-Jul-06 21:15 
AnswerRe: File and text encoding issue Pin
Nader Elshehabi10-Jul-06 21:51
Nader Elshehabi10-Jul-06 21:51 
Hello

Heinz_ wrote:
The file gets created in ANSI encoding, this according to many programs including notepad and MS Word.


Who in the world said that?!?!?

You can create your file in any format you want. Besides, if you want to write text in UTF-8, here is a sample:

SaveFileDialog save = new SaveFileDialog();
save.ShowDialog();
StreamWriter Fs = File.CreateText(save.FileName);
Fs.WriteLine("Test");
Fs.WriteLine("اختبار");
Fs.WriteLine("épreuve");
Fs.WriteLine("Prüfung");
Fs.WriteLine("试验");
Fs.WriteLine("試験");
Fs.Flush();


RegardsRose | [Rose]
GeneralRe: File and text encoding issue Pin
Heinz_11-Jul-06 8:08
Heinz_11-Jul-06 8:08 
GeneralRe: File and text encoding issue Pin
Heinz_11-Jul-06 8:18
Heinz_11-Jul-06 8:18 
AnswerRe: File and text encoding issue Pin
Heinz_11-Jul-06 8:38
Heinz_11-Jul-06 8:38 
AnswerRe: File and text encoding issue Pin
Nader Elshehabi11-Jul-06 11:27
Nader Elshehabi11-Jul-06 11:27 
QuestionLink buttons are not working....! Pin
ayyp10-Jul-06 20:24
ayyp10-Jul-06 20:24 
AnswerRe: Link buttons are not working....! Pin
thomasa10-Jul-06 23:37
thomasa10-Jul-06 23:37 
Questionauto upload/export of a downloaded CSV file to SQLSERVER on the server [modified] Pin
amitcoder8310-Jul-06 19:50
amitcoder8310-Jul-06 19:50 
QuestionRe: auto upload/export of a downloaded CSV file to SQLSERVER on the server Pin
Nader Elshehabi10-Jul-06 21:29
Nader Elshehabi10-Jul-06 21:29 
AnswerRe: auto upload/export of a downloaded CSV file to SQLSERVER on the server Pin
amitcoder8310-Jul-06 22:50
amitcoder8310-Jul-06 22:50 
AnswerRe: auto upload/export of a downloaded CSV file to SQLSERVER on the server Pin
Nader Elshehabi10-Jul-06 23:39
Nader Elshehabi10-Jul-06 23:39 
QuestionCustom Cotrol Pin
Sashulika10-Jul-06 19:49
Sashulika10-Jul-06 19:49 
QuestionRe: Custom Cotrol Pin
Nader Elshehabi10-Jul-06 21:24
Nader Elshehabi10-Jul-06 21:24 
AnswerRe: Custom Cotrol Pin
Josh Smith11-Jul-06 4:18
Josh Smith11-Jul-06 4:18 
QuestionQuestion about string and int in c# ( IDE 2005 ) Pin
Yanshof10-Jul-06 19:10
Yanshof10-Jul-06 19:10 
AnswerRe: Question about string and int in c# ( IDE 2005 ) Pin
S. Senthil Kumar10-Jul-06 19:28
S. Senthil Kumar10-Jul-06 19:28 
AnswerRe: Question about string and int in c# ( IDE 2005 ) Pin
wasife11-Jul-06 8:30
wasife11-Jul-06 8:30 
QuestionInterop Error while including Microsoft outlook dll Pin
aaraaayen10-Jul-06 18:55
aaraaayen10-Jul-06 18:55 

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.