Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

native error on Win CE 0xc000005

Status
Not open for further replies.

stedee

Programmer
Oct 31, 2006
1
0
0
GB

I am getting a native error exception off my win ce app. I have tracked it down to this line:

dsStores.ReadXML(storesfile);

can anyone tell me why this would be? The file is definitiely there, the file is definitey valid xml so I'm a bit confused really.

Cheers

Steve
 
Hi Steve
I already replayed to this kind of problem please check the article in the same page sent in 19 Sep 06.

//------------
Probably you need this sample to download your xml file and parse it


xDoc.Load("myxmlfile.xml");
XmlNodeList name = xDoc.GetElementsByTagName(TAG_NAME);
XmlNodeList Port = xDoc.GetElementsByTagName(TAG_PORT);
for (int i = 0; i < name.Count; i++)
{
int iPort = Int32.Parse(Port.InnerText);
string Name = name.InnerText;

}
//---------------
Regards

AbdelMajid
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top