Hi,
Can some one explain how to make a Active X EXE that will display a form when it is run? When ever I run it the form will not display.
I changed startup object to Sub Main, added a module with a Sub Main which is supposed to show the form.
Printable View
Hi,
Can some one explain how to make a Active X EXE that will display a form when it is run? When ever I run it the form will not display.
I changed startup object to Sub Main, added a module with a Sub Main which is supposed to show the form.
Inside Sub Main of a standard module you load your form (i.e. Form1.Show) and you may have to set the startup to sub main or the form or something in the project properties (I'm not sure).