終了しようとしているVB.netプログラムで次の問題が発生します。基本的に私には2つの形式があります。Form1とtechs。フォーム1が最初に読み込まれ、私の「メイン」ページです。Form1のtechsで変数を参照したいと思います。私はこの変数を次のように公に宣言しました:
Public jobID As String
次に、Form1でこれを次のように参照します。
文字列としての薄暗いジョブ=techs.jobID
これは私が得ているエラーです:
An error occurred creating the form. See Exception.InnerException for details. The error is: An error occurred creating the form. See Exception.InnerException for details. The error is: The form referred to itself during construction from a default instance, which led to infinite recursion. Within the Form's constructor refer to the form using 'Me.'
誰かが私にここで何がうまくいかないのかについての考えを教えてもらえますか?