Hi,
I am trying to create an excel workbook to automatically open with a form (without a worksheet behind it). At the moment I have a button on the worksheet which opens the form for me, but I am not happy with that. I've read about the workbookopen event, but where does the procedure go, and how do you code it to open the form. I have tried using the code:
Private Sub App_WorkbookOpen(ByVal Wb As Workbook)
Load frmProcess (frmProcess being the name of the form?!?!)
frmProcess.Show
End Sub
in the 'ThisWorkbook' module, to no avail - nothing happens.
PLEASE HELP!!!
In advance, your help is much appreciated
I am trying to create an excel workbook to automatically open with a form (without a worksheet behind it). At the moment I have a button on the worksheet which opens the form for me, but I am not happy with that. I've read about the workbookopen event, but where does the procedure go, and how do you code it to open the form. I have tried using the code:
Private Sub App_WorkbookOpen(ByVal Wb As Workbook)
Load frmProcess (frmProcess being the name of the form?!?!)
frmProcess.Show
End Sub
in the 'ThisWorkbook' module, to no avail - nothing happens.
PLEASE HELP!!!
In advance, your help is much appreciated