yup. when calling the showmyform function from the "myclass" class...
Explanation:
the activeX exe has a class, named "MyClass" (no quotes). that class has a function (just like Initialize in Plus! plugins) named "ShowMyForm". In that function, the form should be shown. also note that the project title of the activeX exe is "MyExe"
your plugin wil create that class and call the function
code:
Dim bla As Object
Set bla = CreateObject("MyExe.MyClass")
Call bla.ShowMyForm()