D
Denis
You can call a routine in another workbook by doing:
Application.Run "SomeBook.xls!SomeRoutine"
Since you can call a routine in a form by:
Call SomForm.FormRoutine
I was hoping that you could call a form routine from another workbook
by doing:
Application.Run "SomeBook.xls!SomeForm.FormRoutine"
but this doesn't work.
Is there a way to do this?
On a related note, is there a way to unload a form from another
workbook. My understanding is that calling a routine in a form will
automatically load it (if it isn't already loaded) but there are times
when you would want to unload a form to guarantee you are starting
fresh.
Denis
Application.Run "SomeBook.xls!SomeRoutine"
Since you can call a routine in a form by:
Call SomForm.FormRoutine
I was hoping that you could call a form routine from another workbook
by doing:
Application.Run "SomeBook.xls!SomeForm.FormRoutine"
but this doesn't work.
Is there a way to do this?
On a related note, is there a way to unload a form from another
workbook. My understanding is that calling a routine in a form will
automatically load it (if it isn't already loaded) but there are times
when you would want to unload a form to guarantee you are starting
fresh.
Denis