can activex dlls display a form? i made a msn plus plugin but the form never shows. if i put a msgbox there it will show but anything after and includin the form.show code is ignored
Are you referencing the ActiveX exe and properly creating the object required to call the form? You need to create a procedure within the main class of the ActiveX that you can call and that will open the form for you. Post the code you are using to show the form.
Function ShowAbout()
Dim About As String
About = App.ProductName & " " & App.Major & "." & App.Minor & "." & App.Revision _
& vbCrLf & App.FileDescription
MsgBox About, vbInformation, "About..."
frmAbout.Show
End Function
but everything after (MsgBox About, vbInformation, "About...") is ignored.
the function is called by:
Public Function Configure()
ShowAbout
End Function
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.