The discrete interval and base attributes are not used for formatting the numedit to display a certain radix/number base. Instead you change the formatstring attribute. For example if you want to display hex do the following:
m_NumEdit.FormatString = "\"0x\"2x";
m_NumEdit.Value = 0x2B;
The first line sets the format to display two hex digits and the second line enters the hex value of 2B to the CNiNumEdit control. If you want to, you can also set the formatstring at design time through the property pages under the format tab.
Now, to clear up the use of the discrete interval and base properties, these are used to set the size of each increment and the starting value for the control, respectively.
All of this information and more can be found in the Component
Works++ Online Help as well as the ComponentWorks Reference (after all CNiNumEdit is a wrapper for the CWNumEdit control). In the ComponentWorks++ Online Help look under the CNiAxis FormatString member to understand the formatstring's usage, this is a shared property among many of the controls.
Jason F.
Applications Engineer
National Instruments
www.ni.com/ask