(VB.NET) I've been searching for 3 days trying to figure out why this is happening, but I'm out of luck and out of my mind! Anyone have any idea why this is happening? I get this error as soon as I open the application. It works fine on my machine, but when we installed it on a test machine, we get this error.
And the line 35 is this:
Code:
3:46 PM -- An error occurred creating the form. See Exception.InnerException for details. The error is: Retrieving the COM class factory for component with CLSID {857C49E7-ADC6-11D1-98C1-0060948CAA0A} failed due to the following error: 80040154.
at SLSClaimantWorkbook.My.MyProject.MyForms.Create__Instance__[T](T Instance) in 17d14f5c-a337-4978-8281-53493378c1071.vb:line 190
at SLSClaimantWorkbook.My.MyProject.MyForms.get_SLSClaimantWorkbook()
at SLSClaimantWorkbook.My.MyApplication.OnCreateMainForm() in C:\Documents and Settings\C15919\My Documents\Visual Studio 2005\Claimant Workbook\Claimant Workbook\My Project\Application.Designer.vb:line 35
at Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.OnRun()
at Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.DoApplicationModel()
Code:
<Global.System.Diagnostics.DebuggerStepThroughAttribute()> _
Protected Overrides Sub OnCreateMainForm()
Me.MainForm = Global.SLSClaimantWorkbook.SLSClaimantWorkbook ' line 35
End Sub
Comment