Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

HELP! Calling a VB COM+ DLL from another VB COM+ DLL

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
I am calling a VB COM+ DLL from another VB COM+ DLL, and getting this error:

System.Runtime.InteropServices.COMException: An unknown error has occurred!

[COMException (0x800a0bcd): An unknown error has occurred!]
Microsoft.VisualBasic.Helpers.LateBinding.InternalLateGet(Object o, Type objType, String name, Object[] args, String[] paramnames, Boolean[]& CopyBack, Boolean bReturnByrefs)
Microsoft.VisualBasic.Helpers.LateBinding.LateGetNoByRef(Object o, Type objType, String name, Object[] args, String[] paramnames)
ASP.a_list_aspx.__Render__control1(HtmlTextWriter __output, Control parameterContainer) in c:\inetpub\ System.Web.UI.Control.RenderChildren(HtmlTextWriter writer) +27
System.Web.UI.Control.Render(HtmlTextWriter writer) +7
System.Web.UI.Control.RenderControl(HtmlTextWriter writer) +112
System.Web.UI.Page.ProcessRequestMain() +964



Any ideas?
 
Its something to do with latebinding, try early binding the method call.It is unable to identify the call made due to late binding.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top