What did you mean you had to change a name? I have the proper field name
entered. When using VB to debug I am finding that my values are coming across
as the ListIndex value and not a String. I have declaired the variable as a
String and it is returned as "".
Form name is acParticipantSelect
Field name is cmbxPartSelect
Based on RowSourceType: Table/Querry
Row Source: SELECT [Participant].[ParticipantID], [Participant].[Name] FROM
Participant;
Bound Column: 2
Limit to List: Yes
I have tried to use a different order to the same result as above.
I have even tried to redefine the value in VB by
Dim cmbxPartSelect(cmbxPartSelect.ListIndex) As String
and receive a Compile Error: Constant Expression Required
I have tried Row Source: SELECT [Participant].[Name] FROM Participant; but
the combo box does not display any values
My querry is working correctly for the information passed to it. It is just
the wrong info being passed.
Any help is appriciated
bladelock said:
It does Work! I'm sorry, I had to change a name. My next question, I want to
create a report for this to printout what is my next step. Thanks