Click here to Skip to main content
15,888,454 members
Home / Discussions / C#
   

C#

 
GeneralRe: FTP delete folders with all subfolders and containing files Pin
black_raven_in_black_sky16-May-06 3:08
black_raven_in_black_sky16-May-06 3:08 
GeneralRe: FTP delete folders with all subfolders and containing files Pin
simplexe17-May-06 2:27
simplexe17-May-06 2:27 
Questionhow drawing over calendar ? Pin
Susuko13-May-06 7:40
Susuko13-May-06 7:40 
AnswerRe: how drawing over calendar ? Pin
NaNg1524113-May-06 7:42
NaNg1524113-May-06 7:42 
Questionhow to display sub items in datagridview 2.0 Pin
J.Bhargavi13-May-06 4:28
J.Bhargavi13-May-06 4:28 
AnswerRe: how to display sub items in datagridview 2.0 Pin
Ravi Bhavnani13-May-06 5:06
professionalRavi Bhavnani13-May-06 5:06 
QuestionHow to validate an input XML file against an input XML schema file Pin
H he el el oooo13-May-06 3:23
H he el el oooo13-May-06 3:23 
AnswerRe: How to validate an input XML file against an input XML schema file Pin
Stefan Troschuetz13-May-06 21:59
Stefan Troschuetz13-May-06 21:59 
xmlStream = new FileStream("input.xml", FileMode.Open);
xsdStream = new FileStream("input.xsd", FileMode.Open);
XmlDocument xmlDocument = new XmlDocument();
xmlDocument.Load(xmlStream );
xmlDocument.Schemas.Add(null, XmlReader.Create(xsdStream ));
xmlDocument.Validate(new ValidationEventHandler(this.ValidationHandler));

private void ValidationHandler(object sender, ValidationEventArgs e)
{
// Do something
}



"Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning." - Rick Cook

www.troschuetz.de
GeneralRe: How to validate an input XML file against an input XML schema file Pin
H he el el oooo14-May-06 20:15
H he el el oooo14-May-06 20:15 
GeneralRe: How to validate an input XML file against an input XML schema file Pin
H he el el oooo14-May-06 20:21
H he el el oooo14-May-06 20:21 
GeneralRe: How to validate an input XML file against an input XML schema file Pin
Stefan Troschuetz14-May-06 23:22
Stefan Troschuetz14-May-06 23:22 
GeneralRe: How to validate an input XML file against an input XML schema file Pin
H he el el oooo15-May-06 23:46
H he el el oooo15-May-06 23:46 
GeneralRe: How to validate an input XML file against an input XML schema file Pin
H he el el oooo17-May-06 21:51
H he el el oooo17-May-06 21:51 
GeneralRe: How to validate an input XML file against an input XML schema file Pin
Stefan Troschuetz17-May-06 22:14
Stefan Troschuetz17-May-06 22:14 
GeneralRe: How to validate an input XML file against an input XML schema file Pin
H he el el oooo18-May-06 0:35
H he el el oooo18-May-06 0:35 
GeneralRe: How to validate an input XML file against an input XML schema file Pin
H he el el oooo18-May-06 0:38
H he el el oooo18-May-06 0:38 
Questionwhat is Binding Source in vs.net 2005 and why oledb and sqldataadapter does not exist in vs2005 ? Pin
hdv21213-May-06 1:00
hdv21213-May-06 1:00 
AnswerRe: what is Binding Source in vs.net 2005 and why oledb and sqldataadapter does not exist in vs2005 ? Pin
NaNg1524113-May-06 7:42
NaNg1524113-May-06 7:42 
GeneralRe: what is Binding Source in vs.net 2005 and why oledb and sqldataadapter does not exist in vs2005 ? Pin
hdv21213-May-06 9:16
hdv21213-May-06 9:16 
AnswerRe: what is Binding Source in vs.net 2005 and why oledb and sqldataadapter does not exist in vs2005 ? Pin
NaNg1524113-May-06 10:05
NaNg1524113-May-06 10:05 
QuestionApplication prevents windows from exiting Pin
Mridang Agarwalla12-May-06 23:43
Mridang Agarwalla12-May-06 23:43 
AnswerRe: Application prevents windows from exiting Pin
leppie12-May-06 23:48
leppie12-May-06 23:48 
GeneralRe: Application prevents windows from exiting Pin
Mridang Agarwalla13-May-06 6:10
Mridang Agarwalla13-May-06 6:10 
QuestionHow to block popup window in axWebBrowser? Pin
Dima Filipiuk12-May-06 21:19
Dima Filipiuk12-May-06 21:19 
AnswerRe: How to block popup window in axWebBrowser? Pin
Member 438526521-Sep-09 20:39
Member 438526521-Sep-09 20:39 

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.