I am getting a very strange problem. My table stores some values which I try to populate in a listbox. Any record in the table that stores "," (Comma) sign doesn't get stored in the listbox. The record before comma sign will get stored in the listbox but not the record after comma sign.
I am writing the following code:
The data in the table suppose is:
tblTC_Actions
1.Action 3 pass graded live calls (A mix of NB/EB) 3 pass graded Documentation (can be linked to the call audits)
2.1 competent live EO call (where such a call is taken) Where no EO call is taken through NE stage a pass graded role play must be completed before nomination to ‘Competent’ status
3.If, after 8 weeks, a lack of opportunity prevents acquiring evidence in NB, EB or EO activity, supervisor agrees with QAT most appropriate action, e.g. role play, and/or assessment of first event.
The last record only stores "If" in the listbox
I hope I made it clear. Any help will be much appreciated.
Thanks
I am writing the following code:
Code:
Set rs = CurrentDb.OpenRecordset("select Action,Type from tblTC_Actions where Type=" & Me.cboMDForms.Column(0))
End If
rs.MoveFirst
Do While Not rs.EOF
lstItems.AddItem rs.Fields(0).Value
rs.MoveNext
Loop
tblTC_Actions
1.Action 3 pass graded live calls (A mix of NB/EB) 3 pass graded Documentation (can be linked to the call audits)
2.1 competent live EO call (where such a call is taken) Where no EO call is taken through NE stage a pass graded role play must be completed before nomination to ‘Competent’ status
3.If, after 8 weeks, a lack of opportunity prevents acquiring evidence in NB, EB or EO activity, supervisor agrees with QAT most appropriate action, e.g. role play, and/or assessment of first event.
The last record only stores "If" in the listbox
I hope I made it clear. Any help will be much appreciated.
Thanks