B
Bob Richardson
My form has a drop-down list with the names of various Events. When I click
the desired Event I trigger an OnClick event that is suppose to open the
EventForm with information contined in the record "Event" Here's my
subroutine. The problem is "Me![EventBox]" When I click the an item in the
EventBox, e.g. "Series2005" I get a small dialog box that says: "Enter
Parameter Value" and it shows "Series2005" with two buttons and a place to
type in some parameter.
With what should I replace "Me![EventBox]"?
Private Sub EventBox_Click()
On Error GoTo Err_EventBtn_Click
Dim stDocName As String
Dim stLinkCriteria As String
stDocName = "EventForm"
stLinkCriteria = "[Events.Event]=" & Me![EventBox]
DoCmd.OpenForm stDocName, , , stLinkCriteria
Exit_EventBtn_Click:
Exit Sub
Err_EventBtn_Click:
MsgBox Err.Description
Resume Exit_EventBtn_Click
End Sub
the desired Event I trigger an OnClick event that is suppose to open the
EventForm with information contined in the record "Event" Here's my
subroutine. The problem is "Me![EventBox]" When I click the an item in the
EventBox, e.g. "Series2005" I get a small dialog box that says: "Enter
Parameter Value" and it shows "Series2005" with two buttons and a place to
type in some parameter.
With what should I replace "Me![EventBox]"?
Private Sub EventBox_Click()
On Error GoTo Err_EventBtn_Click
Dim stDocName As String
Dim stLinkCriteria As String
stDocName = "EventForm"
stLinkCriteria = "[Events.Event]=" & Me![EventBox]
DoCmd.OpenForm stDocName, , , stLinkCriteria
Exit_EventBtn_Click:
Exit Sub
Err_EventBtn_Click:
MsgBox Err.Description
Resume Exit_EventBtn_Click
End Sub