0
このエラーが自動生成ファイルでなぜ発生しているのかわかりません。誰もそれを見て、私を助けてくれますか?'PCComm'はApplication.Designer.vbの 'PCComm'エラーのメンバーではありません
Option Strict On
Option Explicit On
Namespace My
Partial Friend Class MyApplication
<Global.System.Diagnostics.DebuggerStepThroughAttribute()> _
Public Sub New()
MyBase.New(Global.Microsoft.VisualBasic.ApplicationServices.AuthenticationMode.Windows)
Me.IsSingleInstance = false
Me.EnableVisualStyles = true
Me.SaveMySettingsOnExit = true
Me.ShutDownStyle = Global.Microsoft.VisualBasic.ApplicationServices.ShutdownMode.AfterMainFormCloses
End Sub
<Global.System.Diagnostics.DebuggerStepThroughAttribute()> _
Protected Overrides Sub OnCreateMainForm()
Me.MainForm = Global.PCComm.PCComm.frmMain 'this is where the error occurs
End Sub
End Class
End Namespace
この 'Global.PCComm.PCComm.frmMain'は別のプロジェクトにありますか? – Claudius
いいえ、そのすべてが1つのプロジェクト@Claudius – Adib