W
William Gower
I have created a .net windows form in vb.net and compiled it as a .dll. I
then register the .dll with regasm. I then call the form in a vb 6
application using the following code.
dim c as object
set c = createobject("LaborOrg.form1")
c.show
It works great on my developer machine. I place the .dll and the .tlb on
the client's server and regasm the dll. I check the registry and it shows
LaborOrg.form1. When I click the button to display the form nothing
happens. The app and the winform dll are both on the server and I am trying
to run it from the server. I do have .net framework on the server. Any
suggestions?
then register the .dll with regasm. I then call the form in a vb 6
application using the following code.
dim c as object
set c = createobject("LaborOrg.form1")
c.show
It works great on my developer machine. I place the .dll and the .tlb on
the client's server and regasm the dll. I check the registry and it shows
LaborOrg.form1. When I click the button to display the form nothing
happens. The app and the winform dll are both on the server and I am trying
to run it from the server. I do have .net framework on the server. Any
suggestions?