fiogf49gjkf0d Hi all.
SLX LAN v7.2.1
I have a checklistbox (checklistbox2) that gets populated by the values from a picklist. I want to be able to fill in the checkbox on certain values in that checklistbox. Let's say, fill in the checkbox for the values: UPS, FEDEX and DHL. There are many more options but I want those 3 to be filled in, the picklist will vary in data. Sometimes it will have 5 values, sometimes it will have 8 etc.
How can I do that? Thank you in advance!
Below is the code I use for populating the checklistbox:
<p>Dim objSLXDBjb
Dim objRSjb Set objSLXDBjb = New SLX_DB Set objRSjb = objSLXDBjb.GetNewRecordSet objRSjb.Open "Select TEXT From sysdba.PICKLIST WHERE (PICKLISTID = 'k6UJ9A0002ZU') ORDER BY TEXT", objSLXDBjb.Connection Do While not objRSjb.EOF Checklistbox2.Items.add(objRSjb(0).Value & "") objRSjb.MoveNext Loop
|