Click here to Skip to main content
15,881,455 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
GeneralRe: C# vs VC++ Pin
ian mariano3-Nov-02 7:56
ian mariano3-Nov-02 7:56 
GeneralRe: C# vs VC++ Pin
Kevin McFarlane4-Nov-02 3:48
Kevin McFarlane4-Nov-02 3:48 
GeneralRe: C# vs VC++ Pin
Kevin McFarlane4-Nov-02 3:44
Kevin McFarlane4-Nov-02 3:44 
GeneralRe: C# vs VC++ Pin
Boogie6-Nov-02 12:38
Boogie6-Nov-02 12:38 
GeneralRe: C# vs VC++ Pin
Kevin McFarlane7-Nov-02 5:41
Kevin McFarlane7-Nov-02 5:41 
GeneralStreamReading Cyrillic (windows) Encoding Pin
devmaximus2-Nov-02 14:22
devmaximus2-Nov-02 14:22 
GeneralRe: StreamReading Cyrillic (windows) Encoding Pin
Stephane Rodriguez.2-Nov-02 19:18
Stephane Rodriguez.2-Nov-02 19:18 
GeneralRe: StreamReading Cyrillic (windows) Encoding Pin
Richard Deeming4-Nov-02 2:40
mveRichard Deeming4-Nov-02 2:40 
The default constructor for the StreamReader object uses the UTF-8 encoding. You need to use the appropriate encoding, e.g. iso-8859-5:
Dim tPath As String = "C:\CYRILLIC_ENCODED.txt"
Dim tFileStream As FileStream = File.Open(tPath, FileMode.Open)
Dim Cyrillic As System.Text.Encoding = System.Text.Encoding.GetEncoding("iso-8859-5")
Dim tStreamReader As New StreamReader(tFileStream, Cyrillic)
...

GeneralRe: StreamReading Cyrillic (windows) Encoding Pin
Anonymous4-Nov-02 8:56
Anonymous4-Nov-02 8:56 
GeneralRe: StreamReading Cyrillic (windows) Encoding Pin
Anonymous4-Nov-02 11:24
Anonymous4-Nov-02 11:24 
GeneralRe: StreamReading Cyrillic (windows) Encoding Pin
devmaximus4-Nov-02 11:56
devmaximus4-Nov-02 11:56 
Questionimage encoder? Pin
Stefan Bolder2-Nov-02 0:17
sussStefan Bolder2-Nov-02 0:17 
AnswerRe: image encoder? II Pin
Stefan Bolder2-Nov-02 0:41
sussStefan Bolder2-Nov-02 0:41 
GeneralRe: image encoder? II Pin
Stephane Rodriguez.2-Nov-02 1:52
Stephane Rodriguez.2-Nov-02 1:52 
GeneralRe: image encoder? II Pin
Stefan Bolder2-Nov-02 22:40
sussStefan Bolder2-Nov-02 22:40 
GeneralRe: image encoder? II Pin
Stephane Rodriguez.2-Nov-02 22:40
Stephane Rodriguez.2-Nov-02 22:40 
GeneralEventHandler Behavior Pin
EricK71-Nov-02 9:16
sussEricK71-Nov-02 9:16 
GeneralRemoting hangs when accessing a class with a COM + Reference Pin
Dam_f31-Oct-02 7:29
Dam_f31-Oct-02 7:29 
General.NET Remoting Pin
Dam_f31-Oct-02 4:59
Dam_f31-Oct-02 4:59 
GeneralRe: .NET Remoting Pin
ian mariano2-Nov-02 7:48
ian mariano2-Nov-02 7:48 
GeneralProblem with ServiceProcessInstaller and multiple service instances Pin
User 2237029-Oct-02 23:57
User 2237029-Oct-02 23:57 
Generalconfig file not found :-( Pin
Anonymous28-Oct-02 22:36
Anonymous28-Oct-02 22:36 
GeneralRe: config file not found :-( Pin
Stephane Rodriguez.28-Oct-02 22:43
Stephane Rodriguez.28-Oct-02 22:43 
GeneralRe: config file not found :-( Pin
Anonymous29-Oct-02 1:39
Anonymous29-Oct-02 1:39 
GeneralRe: config file not found :-( Pin
Stephane Rodriguez.29-Oct-02 1:51
Stephane Rodriguez.29-Oct-02 1:51 

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.