Not 100% sure if I understand the question, but assuming I do, here's the answer:
open up the workbook
open up vba editor for that workbook
in the Workbook_Open() method of thisSheet add:
myform.show
Where myform is the name of the form you would like to have displayed automatically.
-Venkman