0

私には小さな問題があり、それが今私を怒らせています。コードに小さな間違いがありましたが、間違いを見つけて、すべてがうまく動作しています - ほぼ。ソリューションでファイルへのパスを見つける必要がありましたが、見つけました。しかし、フォームのデザインを開くと、エラーが発生します

「パス 'C:\Windows\system32\Source\ChampsList.txt' の一部が見つかりませんでした」

問題があるはずのライン上には、何もありません。この問題は無視でき、すべてが順調に進んでいます。それでも、私はこれが嫌いです:

これ

ありがとう

this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
        this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
        this.ClientSize = new System.Drawing.Size(1083, 569);
        this.Controls.Add(this.guides1);
        this.Controls.Add(this.MainMenu); // this is line where "is" mistake
        this.Controls.Add(this.Panels);
        this.Controls.Add(this.Strip);
        this.MainMenuStrip = this.MainMenu;
        this.Name = "MainProgram";
        this.Text = "Porgram";
        this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
        this.Load += new System.EventHandler(this.AppLoad);
        this.MainMenu.ResumeLayout(false);
        this.MainMenu.PerformLayout();
        this.Strip.ResumeLayout(false);
        this.Strip.PerformLayout();
        this.Panels.ResumeLayout(false);
        this.ResumeLayout(false);
        this.PerformLayout();

コール スタック:

at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
at System.IO.FileStream.Init(String path, FileMode mode, FileAccess access, Int32 rights, Boolean useRights, FileShare share, Int32 bufferSize, FileOptions options, SECURITY_ATTRIBUTES secAttrs, String msgPath, Boolean bFromProxy, Boolean useLongPath, Boolean checkHost)
at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, FileOptions options, String msgPath, Boolean bFromProxy, Boolean useLongPath, Boolean checkHost)
at System.IO.StreamReader..ctor(String path, Encoding encoding, Boolean detectEncodingFromByteOrderMarks, Int32 bufferSize, Boolean checkHost)
at System.IO.File.InternalReadAllText(String path, Encoding encoding, Boolean checkHost)
at System.IO.File.ReadAllText(String path)
at HelpApp.Guides.Guides_Load(Object sender, EventArgs e) in c:\Users\Lukáš\Documents\Visual Studio 2010\Projects\HelpApp\HelpApp\Guides.cs:line 28
at System.Windows.Forms.UserControl.OnLoad(EventArgs e)
at System.Windows.Forms.UserControl.OnCreateControl()
at System.Windows.Forms.Control.CreateControl(Boolean fIgnoreVisible)
at System.Windows.Forms.Control.CreateControl()
at System.Windows.Forms.Control.ControlCollection.Add(Control value)
at System.Windows.Forms.Form.ControlCollection.Add(Control value)
at System.Windows.Forms.Design.ControlDesigner.DesignerControlCollection.Add(Control c) 
4

0 に答える 0