-
about activex
I have made all my applications with Standard EXE in VB.
Now I want to develop my new projects with activex exe.
But if I take a new project with a new form and try to run. It does not run.
The form is just a form. nothing else.
I just want to start with activex.
What I have to change in activex to run a project?
Please help me.
--Rajib
-
Re: about activex
From the new project window, you have a choice of creating:
ActiveX Exe
ActiveX Dll
ActiveX Document Dll
ActiveX Document Exe
Create whatever new project suites you current needs.
-
Re: about activex
Ok, I have already selected ActiveX EXE. The problem was not there.
I want to know do I need to change anything from Standard EXE to run the project?
If I add a form and try to run then it asks something.
Rajib
-
Re: about activex
Is there a specific reason you are using an ActiveX exe?
Anyway, try adding a standard module to the project and using a Sub Main to bring up your form.
Code:
Public Sub Main()
Dim frm As Form1
Set frm = New Form1
frm.Show
End Sub