You can select more than one item from a list in a ListBox
but not in a ComboBox. To allow multiple selections, set
the MultiSelect property to either Simple or Extended
(Refer to the Help file to see which is the most
appropriate for your application)
Hope That Helps
Gerald Stanley MCSD
-----Original Message-----
Is it possible to select more than one value in a list or
Set rstOrdOrgLkUp = CurrentDb.OpenRecordset("OrdOrgLkUp", dbOpenTable
For Each itm In Me.Controls("ChooseOrderOrg").ItemsSelecte
With rstOrdOrgLkU
.AddNe
!OO = Me.Controls("ChooseOrderOrg").ItemData(itm
.Updat
End Wit
Next it
rstOrdOrgLkUp.Clos
AllOO is a check box
' Build criteria string from selected items in list bo
Dim OrdOrgCriteria As Strin
Dim a As Varian
OrdOrgCriteria = "
For Each a In Me![ChooseOrderOrg].ItemsSelecte
If OrdOrgCriteria <> "" The
OrdOrgCriteria = OrdOrgCriteria & ",
End I
OrdOrgCriteria = OrdOrgCriteria & ""
& Me![ChooseOrderOrg].ItemData(a) & "
Next
Me.Controls("OOPrint") = OrdOrgCriteri
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.