2017-08-17 193 views
-1
1>------ Build started: Project: Major 2, Configuration: Debug Any CPU ------ 
1> COM Reference 'WMPLib' is the interop assembly for ActiveX control 'AxWMPLib' but was marked to be linked by the compiler with the /link flag. This COM reference will be treated as a reference and will not be linked. 
1>C:\Users\James\Google Drive\School\SDD\VB Work\VB Task 2\Major 2\Major 2\My Project\Application1.Designer.vb(25,20): error BC30269: 'Public Sub New()' has multiple definitions with identical signatures. 
1>C:\Users\James\Google Drive\School\SDD\VB Work\VB Task 2\Major 2\Major 2\My Project\Application1.Designer.vb(34,33): error BC30269: 'Protected Overrides Sub OnCreateMainForm()' has multiple definitions with identical signatures. 
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ========== 

我做了什麼錯?VB.Net具有相同簽名的多個定義

Namespace My 

    'NOTE: This file is auto-generated; do not modify it directly. To make changes, 
    ' or if you encounter build errors in this file, go to the Project Designer 
    ' (go to Project Properties or double-click the My Project node in 
    ' Solution Explorer), and make changes on the Application tab. 
    ' 
    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.AfterAllFormsClose 
     End Sub 

     <Global.System.Diagnostics.DebuggerStepThroughAttribute()> _ 
     Protected Overrides Sub OnCreateMainForm() 
      Me.MainForm = Global.Major_2.Main_Screen 
     End Sub 
    End Class 
End Namespace 

這是代碼中的兩倍,但我不知道應用程序設計器中發生了什麼變化。

+1

**我做了什麼錯** - ?您還沒有發佈參考錯誤代碼,這是你做錯了什麼。沒有人可以通過看這 –

+0

來幫助你。對不起,我有點困惑。 – Darkrym

+0

仍然在錯誤的隊友!注意第二行中註釋的含義'注意:該文件是自動生成的;不要直接修改它。「你可能已經爲'Public Sub New()'&'Protected Overrides Sub OnCreateMainForm()'寫了**自己的代碼**。這就是提出這個問題的原因! –

回答

0

所以原來谷歌驅動器複製我的文件之一,所以有兩個它打開兩個

相關問題