Login / Register  search  syndication  about

          Jason Buss' Blog

Jason Buss on SalesLogix development & customization, SQL, and more.

Programmatically populating combobox controls in SalesLogix

A combobox control works much like a picklist, in that it presents a number of selectable values to be stored in that control.  You can set available values at development time using the items property of the control, but for greater flexablility, you can populate the control at run-time as well.  For this example, we'll populate a combobox with a distinct list of Account Type values:

 First we want to clear the combobox of existing items, so we aren't adding duplicates:

ComboBox1.Items.Clear

Next, we'll create a recordset containing a distinct list of account type values.

Dim objRS

With objRS

   Set objRS = Application.CreateObject("ADODB.Recordset")
   .CursorLocation = adUseClient
   .CursorType = adOpenStatic
   .LockType = adLockOptimistic
   .Open "select distinct type from account", Application.BasicFunctions.GetNewConnection

Finally, we loop through the recordset, adding each returned item in turn.

   While Not (.BOF or .EOF)
      ComboBox1.Items.Add .Fields("TYPE").Value    
      .MoveNext
   Wend
   .Close
End With

Set objRS = Nothing

That's all there is to it!  All in all, this is a pretty simple process.  This can be used to populate the ListBox or CheckListBox controls as well.  I hope you find this code snippet useful.  Thanks for reading!
What's This?
  
Bookmark and Share

About Jason Buss

   Jason is a senior application developer with Customer FX.



Related Content
   Can the SalesLogix Application architect's build process be automated?
Can the SalesLogix Application architect's build process be automated, or called from a batch file? W
Posted on May 16, 2013 by SalesLogix Support to SalesLogix Questions & Answers
 
   Is it possible to Sync SalesLogix Attachments based on Account Manager?
Is it possible to only sync SalesLogix Attachments from the accounts where the user is the account manag
Posted on May 15, 2013 by SalesLogix Support to SalesLogix Questions & Answers
 
   SalesLogix Remote Library Management
Is it possible to log into a SalesLogix Remote Database as Admin and Manage the Library Files?
Posted on May 14, 2013 by SalesLogix Support to SalesLogix Questions & Answers
 
   Demystifying SalesLogix Web: Dashboards and Analytics Tools
Join us for a free webinar, Wednesday, May 15th at 2pm CDT. The SalesLogix Web dashboards and analytics
Posted on May 08, 2013 by Brianna Tinjum to The Inbox
 
   What is the Difference Between Left Joins and Inner Joins in SalesLogix?
Question: What is the difference between Left joins and Inner joins in SalesLogix?
Posted on May 07, 2013 by SalesLogix Support to SalesLogix Questions & Answers
 
Comments

 

The Customization Blog said:

Picklists in SalesLogix are a very useful tool, but did you know you could also you values from an existing picklist to populate other list-based controls such as ComboBoxes, CheckListBoxes, ListViews... even Radio groups? You simply need an understanding

August 12, 2009 3:07 AM

Leave a Comment

(required)  
(optional)
(required)  
Add
All contents Copyright © 2013 Customer FX Corporation
Customer FX Corporation
2324 University Avenue West, Suite 115
Saint Paul, Minnesota 55114
Tel: 800.728.5783

  Follow @CustomerFX on twitter
Follow the best news, tips, and articles
  Subscribe to Customer FX on youtube
Watch SalesLogix tutorial videos from Customer FX
Login / Register