Let me tell you what I have done.
I made an activex dll called car.dll, the class is called CCar and it has one property called Make that returns a string.
I added this to a COM+ application called test.
Then I made a simple client that had a form with a textbox and this code in the form load
I then compiled and packaged this. Then I exported the COM+ application as an application proxy.Code:Dim obj As Object Set obj = CreateObject("car.CCar") txtMake.Text = obj.Make
Took this all to another computer and installed it all without problem. Went to run the application and I get this error:
Run-time error '429':
ActiveX component can't create object.
I'd appreciate it VERY much if someone could tell me what the problem is here. :-)




Reply With Quote