2009-11-27 104 views
0

我無法在它是由我的朋友在C#開發的Visual Studio 2008中打開我的項目。它顯示了這個錯誤:無法打開我的C#項目

"Could not find type 'LibrarySystem.ctrlSeparator'. 
    Please make sure that the assembly that contains this type is referenced. 
    If this type is a part of your development project, make sure that 
    the project has been successfully built. " 

而且

"The variable 'ctrlSeparator1' is either undeclared or was never assigned. " 

如何糾正這個問題?

+0

你問你的朋友? – Paddy 2009-11-27 11:53:39

回答

7

與所有尊重......錯誤消息告訴你,你需要知道的一切......

它試圖加載控件,它不存在。所以無論你的朋友沒有給你整個項目,或者他使用了你沒有的第三方組件。

+0

感謝您的建議... – Velmurugan 2009-11-27 11:56:19

2

顯然你的朋友使用(或自己寫的)一個外部庫。

請他爲您提供該組件,這樣就可以編譯項目。

+0

感謝您的建議... – Velmurugan 2009-11-27 11:57:00

1

要麼你沒有完整的項目,或者您需要註冊的DLL。確保代碼或程序集中有LibrarySystem.ctrlSeparator。如果它在非託管程序集中,則詢問是否需要註冊。