Apr 21, 2007 #1 besto1a Programmer Aug 20, 2006 41 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 Nov 8, 2002 53,708 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 May 2, 2003 1,276 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