Apr 21, 2007 #1 besto1a Programmer Joined Aug 20, 2006 Messages 41 Location GB Does anyone know how to Populate a list box with the contents of a record set that has 5 columns Thanks
Does anyone know how to Populate a list box with the contents of a record set that has 5 columns Thanks
Apr 21, 2007 #2 PHV MIS Joined Nov 8, 2002 Messages 53,708 Location FR since ac2003: Set [your list box].Recordset = yourRecordset Hope This Helps, PH. FAQ219-2884 FAQ181-2886 Upvote 0 Downvote
since ac2003: Set [your list box].Recordset = yourRecordset Hope This Helps, PH. FAQ219-2884 FAQ181-2886
Apr 22, 2007 #3 Zion7 IS-IT--Management Joined May 2, 2003 Messages 1,276 Location CA Or... strRowSource = rec.GetString(adClipString,";",";") Me.lstBox.RowsourceType = "Value List" Me.lstBox.Rowsource = strRowsource Upvote 0 Downvote
Or... strRowSource = rec.GetString(adClipString,";",";") Me.lstBox.RowsourceType = "Value List" Me.lstBox.Rowsource = strRowsource