タイトル | : エラーメッセージ |
記事No | : 1179 |
投稿日 | : 2004/12/01(Wed) 11:36 |
投稿者 | : さち |
[OSのVer]:Windows XP [VBのVer]:VB.NET (sharp developを使用しています)
早速ですがどなたかお気づきの点がございましたら、ご指導下さい。 フォーム上にあるテキストボックスの値をxmlファイルに書き込むコードを作成致しました。 (ボタンを押すイベントとして) ところがファイルを上書きする時点で以下のようなエラーが出ました。 エラーが英語と言うこともあって理解に苦しんでいます このエラーが何を指す物なのか、また一番下にあるJIT Debuggingに関して これは何を言っているのでしょうか・・・ なにぶん初心者でしかもVB.Netも高価なため買えずにいます・・・ もしお気づきの方がいらしたら教えて頂けないでしょうか。 よろしくお願い致します。
************** Exception Text ************** System.Xml.XmlException: This is an unexpected token. The expected token is 'EQUALS'. Line 2, position 10. at System.Xml.XmlScanner.ScanToken(Int32 expected) at System.Xml.XmlTextReader.SetLiteralValues(XmlAttributeTokenInfo fld) at System.Xml.XmlTextReader.SetAttributeValues() at System.Xml.XmlTextReader.ParseElement() at System.Xml.XmlTextReader.Read() at System.Xml.XmlLoader.LoadCurrentNode() at System.Xml.XmlLoader.LoadDocSequence(XmlDocument parentDoc) at System.Xml.XmlLoader.Load(XmlDocument doc, XmlReader reader, Boolean preserveWhitespace) at System.Xml.XmlDocument.Load(XmlReader reader) at DefaultNamespace.MainForm.adddata() in C:\Documents and Settings\****\My Documents\SharpDevelop Projects\scenario\MainForm.vb:line 398 at DefaultNamespace.MainForm.Button4Click(Object sender, EventArgs e) in C:\Documents and Settings\*****\My Documents\SharpDevelop Projects\scenario\MainForm.vb:line 379 at System.Windows.Forms.Control.OnClick(EventArgs e) at System.Windows.Forms.Button.OnClick(EventArgs e) at System.Windows.Forms.Button.OnMouseUp(MouseEventArgs mevent) at System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 cli cks) at System.Windows.Forms.Control.WndProc(Message& m) at System.Windows.Forms.ButtonBase.WndProc(Message& m) at System.Windows.Forms.Button.WndProc(Message& m) at System.Windows.Forms.ControlNativeWindow.OnMessage(Message& m) at System.Windows.Forms.ControlNativeWindow.WndProc(Message& m) at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
----------------------------------------
************** JIT Debugging ************** To enable just in time (JIT) debugging, the config file for this application or machine (machine.config) must have the jitDebugging value set in the system.windows.forms section. The application must also be compiled with debugging enabled.
For example:
<configuration> <system.windows.forms jitDebugging="true" /> </configuration>
When JIT debugging is enabled, any unhandled exception will be sent to the JIT debugger registered on the machine rather than being handled by this dialog.
|