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

.NET (Core and Framework)

 
AnswerRe: Delete In Use File Pin
Giorgi Dalakishvili8-Sep-08 3:44
mentorGiorgi Dalakishvili8-Sep-08 3:44 
GeneralRe: Delete In Use File Pin
Polymorpher11-Sep-08 7:47
Polymorpher11-Sep-08 7:47 
GeneralRe: Delete In Use File Pin
Giorgi Dalakishvili11-Sep-08 7:50
mentorGiorgi Dalakishvili11-Sep-08 7:50 
GeneralRe: Delete In Use File Pin
Polymorpher13-Sep-08 4:08
Polymorpher13-Sep-08 4:08 
GeneralRe: Delete In Use File Pin
Giorgi Dalakishvili13-Sep-08 4:23
mentorGiorgi Dalakishvili13-Sep-08 4:23 
QuestionSecuring DLL's Pin
Member 40066484-Sep-08 1:11
Member 40066484-Sep-08 1:11 
AnswerRe: Securing DLL's Pin
Greg Olmstead9-Sep-08 9:21
Greg Olmstead9-Sep-08 9:21 
QuestionProblem with encoding strings when exporting data to xml Pin
Oshtri Deka3-Sep-08 22:19
professionalOshtri Deka3-Sep-08 22:19 
The problem:
Among data stored in dataset are strings with Croatian characters (Windows CE, code page 1250).
First I've used simple method for writing data to xml.
someDataTable.WriteXml(someStream); 

At first glance it was perfect, but when xml file was opened with Wordpad and some domestic application which uses ton of legacy code written in C++ (MFC) Croatian characters weren't correctly displayed, well haven't been displayed at all (windings-like characters and "hieroglyphs").

So I decided other approach, to store data as xml to memory stream and then to turn data to string...
someDataTable.WriteXml(someMemoryStream);

byte[] buffer = someMemoryStream.GetBuffer();
File.WriteAllText(xmlPathName, Encoding.UTF8.GetString(buffer), Encoding.UTF8);

The result was that all text/xml editors I had available were displaying strings correctly, but above mentioned application didn't.

What else can I do? Fiddling over legacy code is last option I'll try (for 3 years I'm working with .Net almost exclusively, my C++ experience was gained in college and in some side educational projects Frown | :( .


QuestionWebBrowser component - avoid loading pictures Pin
Jan Donat2-Sep-08 2:47
Jan Donat2-Sep-08 2:47 
AnswerRe: WebBrowser component - avoid loading pictures Pin
Pete O'Hanlon2-Sep-08 3:37
mvePete O'Hanlon2-Sep-08 3:37 
GeneralRe: WebBrowser component - avoid loading pictures Pin
Jan Donat2-Sep-08 23:21
Jan Donat2-Sep-08 23:21 
Questionsending Structures over network - C#, .NET Pin
belagizi1-Sep-08 9:02
belagizi1-Sep-08 9:02 
AnswerRe: sending Structures over network - C#, .NET [modified] Pin
Mark Salsbery2-Sep-08 7:52
Mark Salsbery2-Sep-08 7:52 
QuestionFather class in how to use the special sub-category of type [modified] Pin
huangrongchuan31-Aug-08 22:03
huangrongchuan31-Aug-08 22:03 
AnswerDon't Cross Post Pin
Paul Conrad1-Sep-08 13:02
professionalPaul Conrad1-Sep-08 13:02 
GeneralRe: Don't Cross Post Pin
huangrongchuan1-Sep-08 15:58
huangrongchuan1-Sep-08 15:58 
QuestionGetting Base Score for Vista with .NET Pin
Last Attacker31-Aug-08 21:02
Last Attacker31-Aug-08 21:02 
QuestionGetting a sound to trigger an event in .net Pin
shark_scott30-Aug-08 13:47
shark_scott30-Aug-08 13:47 
QuestionChange default framework version that is used Pin
Winkles29-Aug-08 19:38
Winkles29-Aug-08 19:38 
AnswerRe: Change default framework version that is used Pin
Scott Dorman30-Aug-08 3:55
professionalScott Dorman30-Aug-08 3:55 
GeneralRe: Change default framework version that is used Pin
Winkles31-Aug-08 18:18
Winkles31-Aug-08 18:18 
GeneralRe: Change default framework version that is used Pin
Scott Dorman31-Aug-08 18:54
professionalScott Dorman31-Aug-08 18:54 
GeneralRe: Change default framework version that is used Pin
Winkles1-Sep-08 7:47
Winkles1-Sep-08 7:47 
GeneralRe: Change default framework version that is used Pin
Scott Dorman2-Sep-08 4:20
professionalScott Dorman2-Sep-08 4:20 
AnswerRe: Change default framework version that is used Pin
Thomas Stockwell30-Aug-08 14:37
professionalThomas Stockwell30-Aug-08 14:37 

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.