Populate dynamically a combobox

Discussion of application development using iX Developer, including but not limited to getting started, using the functions tab, properties, objects and installation.
Post Reply
arnaud316
Posts: 1
Joined: Tue Jun 10, 2014 7:29 am

Populate dynamically a combobox

Post by arnaud316 »

Hi,

In a combobox i have an option "New product number".
When selecting this alternative a pop up shows up, I fill a number and when cklicking the ok button below i want the number to be present in the list of the combobox. What is the procedure?

I saw an exemple with "Configure Texts" but it is static. The list in the combobox is filled dynamically along with the settings.

Where the source of the combobox is located? Tags?

Thank you in advance.

User avatar
Kyle W.
Posts: 36
Joined: Wed Apr 09, 2014 3:16 pm

Re: Populate dynamically a combobox

Post by Kyle W. »

Are you using a TouchComboBox or the Windows Controls ComboBox?
Best Regards,

Kyle W. | Applications Engineer
Beijer Electronics, Inc.

bjornidar
Posts: 49
Joined: Thu Nov 17, 2011 2:10 am
Location: Norway
Contact:

Re: Populate dynamically a combobox

Post by bjornidar »

I'm not sure if you can do this without any scripting.

You can fill a combobox at an event, i.ex. when a screen opens ->
ComboBox.Items.Add(itemvalue);

Post Reply