Click here to Skip to main content
15,921,463 members
Home / Discussions / C#
   

C#

 
AnswerRe: System info Pin
Guffa5-Nov-06 11:56
Guffa5-Nov-06 11:56 
GeneralRe: System info Pin
sj_h15-Nov-06 12:03
sj_h15-Nov-06 12:03 
AnswerRe: System info Pin
Guffa5-Nov-06 12:52
Guffa5-Nov-06 12:52 
AnswerRe: System info Pin
Judah Gabriel Himango5-Nov-06 12:14
sponsorJudah Gabriel Himango5-Nov-06 12:14 
GeneralRe: System info Pin
sj_h15-Nov-06 12:18
sj_h15-Nov-06 12:18 
GeneralRe: System info Pin
Judah Gabriel Himango5-Nov-06 12:45
sponsorJudah Gabriel Himango5-Nov-06 12:45 
GeneralRe: System info Pin
sj_h15-Nov-06 14:21
sj_h15-Nov-06 14:21 
QuestionCan you add a SYSTEM dtd with CreateDocumentType ? Pin
Bart7Simpson75-Nov-06 11:00
Bart7Simpson75-Nov-06 11:00 
I want to generate a svg using c# and DOM. I have:
<br />
XmlDocument mySvg = new XmlDocument();<br />
XmlDeclaration declaration = mySvg.CreateXmlDeclaration("1.0", "UTF-8", "no");<br />
mySvg.AppendChild(declaration);<br />
XmlDocumentType doctype = mySvg.CreateDocumentType("svg", "-//W3C//DTD SVG 1.1//EN", "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd", null);<br />
mySvg.AppendChild(doctype);<br />


The problem is that the DTD is retrieved from the internet and that gives a huge overhead to my application. I downloaded the DTD and I want to make it SYSTEM instead of PUBLIC but I haven't found a way to do this using CreateDocumentType. The only alternative I could think of is mySvg.Load(LongStringWithXML).
Questionreplace value in XML file Pin
peterchen5-Nov-06 10:49
peterchen5-Nov-06 10:49 
AnswerRe: replace value in XML file Pin
Steve Echols5-Nov-06 11:46
Steve Echols5-Nov-06 11:46 
GeneralRe: replace value in XML file Pin
peterchen6-Nov-06 20:58
peterchen6-Nov-06 20:58 
GeneralRe: replace value in XML file Pin
Steve Echols6-Nov-06 21:35
Steve Echols6-Nov-06 21:35 
AnswerRe: replace value in XML file Pin
Bart7Simpson75-Nov-06 11:57
Bart7Simpson75-Nov-06 11:57 
QuestionCan BinaryWriter write strings? Pin
Lord Kixdemp5-Nov-06 10:21
Lord Kixdemp5-Nov-06 10:21 
AnswerRe: Can BinaryWriter write strings? Pin
Guffa5-Nov-06 10:46
Guffa5-Nov-06 10:46 
GeneralRe: Can BinaryWriter write strings? Pin
Lord Kixdemp5-Nov-06 13:01
Lord Kixdemp5-Nov-06 13:01 
GeneralRe: Can BinaryWriter write strings? Pin
Guffa5-Nov-06 13:52
Guffa5-Nov-06 13:52 
QuestionAttempted to read and write protected memory Pin
Nadia Monalisa5-Nov-06 7:55
Nadia Monalisa5-Nov-06 7:55 
AnswerRe: Attempted to read and write protected memory Pin
Rob Graham5-Nov-06 8:06
Rob Graham5-Nov-06 8:06 
AnswerRe: Attempted to read and write protected memory Pin
kahkaha5-Nov-06 8:32
kahkaha5-Nov-06 8:32 
GeneralRe: Attempted to read and write protected memory Pin
Nadia Monalisa5-Nov-06 8:46
Nadia Monalisa5-Nov-06 8:46 
QuestionOposite / Inverse Color Pin
TeamWild5-Nov-06 7:07
TeamWild5-Nov-06 7:07 
AnswerRe: Oposite / Inverse Color Pin
Insincere Dave5-Nov-06 7:19
Insincere Dave5-Nov-06 7:19 
AnswerRe: Oposite / Inverse Color Pin
Guffa5-Nov-06 7:33
Guffa5-Nov-06 7:33 
GeneralRe: Oposite / Inverse Color Pin
Amar Chaudhary5-Nov-06 23:28
Amar Chaudhary5-Nov-06 23:28 

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.