I am trying to open a form in a new window and I also want this window to be open even after closing the vb6 application. This is the code i am using
Dim frmWB As frmErrWindow
Set frmWB = New frmErrWindow
frmWB.WBErrorWindow.RegisterAsBrowser = True
Set ppDisp = frmWB.WBErrorWindow.object
frmWB.Show
Thanks in advance.
I used an IE object to open the form in a new window and this worked for me.