On a recent PoC (Proof-of-Concept) I had to add items from two comboboxes to a Windows Form combobox. Here is a simple solution to that:
1. Highlight the combobox control in Object Explorer and click the Explore Component Properties button at the top of the Object Explorer.
2. You should see the list of properties available for the combobox control. Select the "Items" property and then select Configure Type to see Properties and Methods of the combobox.
3. Select the Methods you would like to use and then click OK. The methods you selected will appear in the Object Explorer. I've added Items.AddRange(Object[] items) to add an Array of items Commonly used methods are:
4. Then on my Automation I just added the AddRange method to be populated by the combobox from a Windows Application. Something similar to the following:
I just did the same thing for the other combobox items I wanted to add to my Windows Form combobox and ended up with all of them in one single control.
Setting Up Local Environment for Developing Oracle Intelligent Bots Custom Components
Oh the joy of having a local development environment is priceless. For most cloud based solutions the story repeats itself being hard to tr...
-
A few days ago I was helping an Apache user getting the ActiveMQ Web Console up and running on ServiceMix 4.4. At first instance, it seems ...
-
Web Services are very important components of most (if not all) of the integration projects these days. The Web Services architecture make t...
-
Most of the projects I work on have some kind of database interaction and some of them require variables to be the passed to the queries at ...