
VB6 form won't show modally in Excel
I have a VB6 DLL with a form that I want to show modally. The DLL is
instantiated by a VBA Add-In in MS Excel 2002.
I do this:
frmMyForm.Show vbModal
But I have complete control of Excel without dismissing the form, so
the form seems to be displaying modelessly, not modally.
I'm not sure what to try with the Show method's 2nd parameter. I've
tried this, but it didn't help:
frmMyForm.Show vbModal, "Microsoft Excel"
What do I need to do?
Thanks,
Greg