T
tpcolson
I'm trying to use an unbound combo box in a switchboard form that will
allow a user to open the main data entry form based upon the values
presented in the combo box.
cboMapMethod reads from SELECT [tlu_Map_Method].[OBJECTID],
[tlu_Map_Method].[Description] FROM tlu_Map_Method;
where the bound column is two columns, column width is set to 0";1",
and tlu_Map_Method.Description is a text field.
The code I am using is:
Private Sub cboMapMethod_Click()
Dim stDocName As String
Dim stLinkCriteria As String
stDocName = "Rare Points"
stLinkCriteria = "[MapMethod]= " & Chr(34) & Me![cboMapMethod] &
Chr(34)
DoCmd.OpenForm stDocName, , , stLinkCriteria
End Sub
When I manipulate the combo box from the switchboard form, I can
select values but nothing executes on click, the form doesn't open.
allow a user to open the main data entry form based upon the values
presented in the combo box.
cboMapMethod reads from SELECT [tlu_Map_Method].[OBJECTID],
[tlu_Map_Method].[Description] FROM tlu_Map_Method;
where the bound column is two columns, column width is set to 0";1",
and tlu_Map_Method.Description is a text field.
The code I am using is:
Private Sub cboMapMethod_Click()
Dim stDocName As String
Dim stLinkCriteria As String
stDocName = "Rare Points"
stLinkCriteria = "[MapMethod]= " & Chr(34) & Me![cboMapMethod] &
Chr(34)
DoCmd.OpenForm stDocName, , , stLinkCriteria
End Sub
When I manipulate the combo box from the switchboard form, I can
select values but nothing executes on click, the form doesn't open.