System.Runtime.InteropServices.COMException (0x80040154): Retrieving the COM class factory for component with CLSID {58968145-CF05-4341-995F-2EE093F6ABA3} failed due to the following error: 80040154.
I made a program with Visual C# 2008. There are 2 forms in the program. The program works well in my laptop. However, when I install the program in another computer which does not have Visual C# 2008, the error message was shown.
I encountered this error message when I try to open another form(form2) from my main form(form1).
This is the code give me the error.
I’m not sure what could be missing here.
AL Almeida
CIO
May all those that come behind us, find us faithful.
I made a program with Visual C# 2008. There are 2 forms in the program. The program works well in my laptop. However, when I install the program in another computer which does not have Visual C# 2008, the error message was shown.
I encountered this error message when I try to open another form(form2) from my main form(form1).
This is the code give me the error.
Code:
private void adicionar_Click(object sender, EventArgs e)
{
frm2 = new Acquire(this.Name);
frm2.Show();
this.Hide();
}
AL Almeida
CIO
May all those that come behind us, find us faithful.