O.P. RE: Show a Form, without disabling the main chat window???
Ok i have 2 seperate Project: 1 ActiveX EXE and 1 ActiveX DLL
In the ActiveX DLL:
Declarations:
Dim bla As Object
Public Function Initialize(ByVal nVersion As Long, ByVal sUserEmail As String, ByVal oMessenger As Object) As Boolean
Set bla = CreateObject("myexe.myclass")
End Function
I call it with bla.showmyform
In the ActiveX EXE:
name: myexe
class name: myclass
forms: Form1
Within myclass:
Public Function ShowMyForm()
Form1.Show 1
End Function
what am i doing wrong / forget??
|