-1

コードを実行すると初回例外エラーが発生し、その理由がわかりません。私は Visual Studio に非常に慣れていないので、何が間違っているのかわかりません。

画像を投稿するのに十分なポイントがないため、これがエラーの始まりです:

A first chance exception of type 'System.InvalidOperationException' occurred in System.Windows.Forms.dll
System.Transactions Critical: 0 : <TraceRecord xmlns="http://schemas.microsoft.com/2004/10/E2ETraceEvent/TraceRecord" Severity="Critical"><TraceIdentifier>http://msdn.microsoft.com/TraceCodes/System/ActivityTracing/2004/07/Reliability/Exception/Unhandled</TraceIdentifier><Description>Unhandled exception</Description><AppDomain>Project Starter.vshost.exe</AppDomain><Exception><ExceptionType>System.InvalidOperationException, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</ExceptionType><Message>Form that is already visible cannot be displayed as a modal dialog box. Set the form's visible property to false before calling showDialog.</Message><StackTrace>   at System.Windows.Forms.Form.ShowDialog(IWin32Window owner)
   at System.Windows.Forms.Form.ShowDialog()
   at Project_Starter.frmOrders.btnClose_Click(Object sender, EventArgs e) in F:\MIS 304\Homework\Project Starter\Project Starter\Project Starter\frmOrders.vb:line 70
   at System.Windows.Forms.Control.OnClick(EventArgs e)

このエラーの原因と、これを修正する方法を知っている人はいますか?

4

1 に答える 1

0

「既に表示されているフォームは、モーダル ダイアログ ボックスとして表示できません」

それはもう言います。実際のフォーム (ボタンが配置されている場所) または別の既存のフォームをモーダル フォームとして表示しようとしているようです。できません。

于 2013-05-04T21:55:28.623 に答える