Click here to Skip to main content
15,907,149 members
Home / Discussions / C#
   

C#

 
Questionproblems starting application with System.Diagnostics.Process Pin
3Dizard16-Aug-06 4:43
3Dizard16-Aug-06 4:43 
AnswerRe: problems starting application with System.Diagnostics.Process Pin
Professor Sharada Ulhas16-Aug-06 5:12
Professor Sharada Ulhas16-Aug-06 5:12 
GeneralRe: problems starting application with System.Diagnostics.Process Pin
3Dizard16-Aug-06 7:05
3Dizard16-Aug-06 7:05 
QuestionOutlook with Window service? Pin
sinanju16-Aug-06 4:33
sinanju16-Aug-06 4:33 
AnswerRe: Outlook with Window service? Pin
unclepaul16-Aug-06 6:08
unclepaul16-Aug-06 6:08 
GeneralRe: Outlook with Window service? Pin
sinanju16-Aug-06 7:15
sinanju16-Aug-06 7:15 
QuestionReadXMlSchema method Pin
Siva Subramanian16-Aug-06 3:53
Siva Subramanian16-Aug-06 3:53 
AnswerRe: ReadXMlSchema method Pin
Siva Subramanian16-Aug-06 4:44
Siva Subramanian16-Aug-06 4:44 
Hah!!! I myself have found the solution to the above problem. What I was getting was the following error

root element is missing

I modified the code as below and it works!!!

MemoryStream memStream = new MemoryStream();<br />
            dsPersisted.WriteXmlSchema(memStream);<br />
<br />
            //Very important to reset the current position of the stream<br />
            memStream.Position = 0;<br />
<br />
            XmlTextReader reader = new XmlTextReader(memStream);<br />
            <br />
            while (reader.Read())<br />
            {<br />
                Response.Write(reader.Name);<br />
            }<br />
            //Close the writer<br />
            reader.Close();<br />



thanks,

Siva
QuestionProblem connecting to Access DB: "Could not find installable ISAM" Pin
Jag7716-Aug-06 3:44
Jag7716-Aug-06 3:44 
AnswerRe: Problem connecting to Access DB: "Could not find installable ISAM" Pin
Guffa16-Aug-06 6:32
Guffa16-Aug-06 6:32 
AnswerRe: Problem connecting to Access DB: "Could not find installable ISAM" Pin
leckey16-Aug-06 7:53
leckey16-Aug-06 7:53 
GeneralRe: Problem connecting to Access DB: &quot;Could not find installable ISAM&quot; [modified] Pin
Jag7717-Aug-06 5:45
Jag7717-Aug-06 5:45 
QuestionHttp Post Pin
Will Manning16-Aug-06 3:41
Will Manning16-Aug-06 3:41 
AnswerRe: Http Post Pin
Vitaliy Tsvayer16-Aug-06 4:00
Vitaliy Tsvayer16-Aug-06 4:00 
GeneralRe: Http Post Pin
Will Manning16-Aug-06 4:07
Will Manning16-Aug-06 4:07 
GeneralRe: Http Post Pin
Vitaliy Tsvayer16-Aug-06 6:09
Vitaliy Tsvayer16-Aug-06 6:09 
GeneralRe: Http Post Pin
Will Manning16-Aug-06 6:16
Will Manning16-Aug-06 6:16 
QuestionTCPClient/Server + Configuring Windows Pin
TikkuTakku16-Aug-06 3:25
TikkuTakku16-Aug-06 3:25 
AnswerRe: TCPClient/Server + Configuring Windows Pin
Vitaliy Tsvayer16-Aug-06 3:53
Vitaliy Tsvayer16-Aug-06 3:53 
GeneralRe: TCPClient/Server + Configuring Windows Pin
TikkuTakku16-Aug-06 19:45
TikkuTakku16-Aug-06 19:45 
QuestionReadability of the code Pin
Vitaliy Tsvayer16-Aug-06 3:24
Vitaliy Tsvayer16-Aug-06 3:24 
AnswerRe: Readability of the code Pin
Stefan Troschuetz16-Aug-06 4:59
Stefan Troschuetz16-Aug-06 4:59 
GeneralRe: Readability of the code Pin
Vitaliy Tsvayer16-Aug-06 18:56
Vitaliy Tsvayer16-Aug-06 18:56 
GeneralRe: Readability of the code Pin
Stefan Troschuetz16-Aug-06 22:15
Stefan Troschuetz16-Aug-06 22:15 
AnswerRe: Readability of the code Pin
Filip van der Meeren16-Aug-06 6:23
Filip van der Meeren16-Aug-06 6:23 

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.