Setting the display and value for a combo

Is there some way to set the display text different to what the value of a combo box option is?

I love HTML where it’s as simple as this:
<option value='A'>Admin</option>

How do I achieve the same in an Epicor customization combo box?

You would have to do this in code.

Once you have a reference to the combo box you can use the following properties to set the Display/Value. For example:

epiUltraComboC1.ValueMember = "ID";
epiUltraComboC1.DisplayMember = "Name";

How does one “get a reference” to a combo box in code?

Also how do you reference the second option? Is it something like this:

comboName.ValueMember[0] = “ID”;
comboName.DisplayMember[0] = “Name”;
comboName.ValueMember[1] = “ID”;
comboName.DisplayMember[1] = “Name”;

I would try User Defined Codes instead of a static lists in your combos.
The guides for ICE Tools and Customization show how to set the codes/combos up. If you don’t have copies already, you can download them from EpicWeb.

“DescColumnName” is the property to define the display text when your data source isn’t static. I second the suggestion to use UD Codes, it will make this much easier to maintain in future. Right now you’ll have to edit the customization to change your values.