S
scott
I keep my custom menu in an add-in mymenu.xla. I'm trying to open a form
called "frm_enterData" that resides in a seperate workbook called
myWorkbook. A snipplet of my mymenu.xla menu code that should open the form
is listed in CODE 2.
Do I need to specify the path of the form's workbook's path before the name
of the function that opens the form? If so, what would the syntax be?
CODE:
Sub openDataForm()
frm_enterData.Show
End Sub
CODE 2:
Set MenuItem = NewMenu.Controls.Add _
(Type:=msoControlButton)
With MenuItem
.Caption = "Enter Data"
.OnAction = "openDataForm"
End With
called "frm_enterData" that resides in a seperate workbook called
myWorkbook. A snipplet of my mymenu.xla menu code that should open the form
is listed in CODE 2.
Do I need to specify the path of the form's workbook's path before the name
of the function that opens the form? If so, what would the syntax be?
CODE:
Sub openDataForm()
frm_enterData.Show
End Sub
CODE 2:
Set MenuItem = NewMenu.Controls.Add _
(Type:=msoControlButton)
With MenuItem
.Caption = "Enter Data"
.OnAction = "openDataForm"
End With