XL97: ActiveX Controls May Not Display Formatted Numeric Data

ID: Q170442

The information in this article applies to:

SYMPTOMS

TextBox, ComboBox, and ListBox controls do not display data in numeric Formats, for example:

CAUSE

TextBox Control

If you create a TextBox control on a worksheet and you set the LinkedCell property to a cell with a number format, the number format is not used in the TextBox control.

ComboBox Control

If you create a Combo Box control on a worksheet or a UserForm, and you set the ListFillRange property (for a worksheet) or the RowSource property (for a UserForm) to a range of cells, the drop-down list uses the number format in that range, but the selected value does not.

ListBox Control

If you create a ListBox control on a UserForm, and you set the RowSource property of the ListBox control to a range of cells, the items in the ListBox control use the number formats in that range, but the value property of the ListBox control does not.

WORKAROUND

Microsoft provides programming examples for illustration only, without warranty either expressed or implied, including, but not limited to, the implied warranties of merchantability and/or fitness for a particular purpose. This article assumes that you are familiar with the programming language being demonstrated and the tools used to create and debug procedures. Microsoft support professionals can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific needs. If you have limited programming experience, you may want to contact the Microsoft fee-based consulting line at (800) 936-5200. For more information about the support options available from Microsoft, please see the following page on the World Wide Web:

   http://www.microsoft.com/support/supportnet/refguide/

TextBox Control

To link a TextBox control to a worksheet cell, use a TextBox control from the Drawing toolbar instead of the Control Toolbox toolbar.

ComboBox Control

To use a ComboBox control containing a range of cells on a worksheet, use a ComboBox control from the Forms toolbar instead of the Control Toolbox toolbar.

If you are using a ComboBox control on a UserForm, use a macro for the Change event to set the Value property of the ComboBox control. The following example uses a ComboBox control and a macro for the Change event:

1. Save and close all open workbooks, and then open a new workbook.

2. On Sheet1, enter the following:

      A1: 1/1/97
      A2: 5/1/97
      A3: 10/10/97

3. Start the Visual Basic Editor.

4. On the Insert menu, click UserForm.

5. Add a ComboBox control to the UserForm and set the RowSource property

   to Sheet1!A1:A3.

6. Double-click the ComboBox control to display the Visual Basic module
   behind the UserForm, and then enter the following code for the Change
   event for the ComboBox:

      Private Sub ComboBox1_Change()

         ComboBox1.Value = Format(ComboBox1.Value, "m/d/yy")

      End Sub

7. Run the UserForm and click the arrow on the ComboBox.

8. Select any date in the list.

The selected date is displayed as the current value of the ComboBox control.

ListBox Control

If you have a ListBox control on either a UserForm or a worksheet, use a macro similar to the one for the ComboBox control to display the selected value for the ListBox control. For example, follow these steps:

1. Save and close all open workbooks, and then open a new workbook.

2. On Sheet1, enter the following:

      A1: 1/1/97
      A2: 5/1/97
      A3: 10/10/97

3. Start the Visual Basic Editor.

4. On the Insert menu, click UserForm.

5. Add a List Box control to the UserForm and set the RowSource property

   to Sheet1!A1:A3.

6. Double-click the ListBox control to display the module behind the
   UserForm, and enter the following code for the Click event for the
   ListBox control:

      Private Sub ListBox1_Click()

         x = Format(ListBox1.Value, "m/d/yy")
         MsgBox x

      End Sub

7. Run the UserForm and click any date in the ListBox control.

The selected date is displayed in a message box.

STATUS

Microsoft has confirmed this to be a problem in Microsoft Excel 97 for Windows.

REFERENCES

For more information about TextBox, ComboBox, and ListBox controls, click the Office Assistant, type "controls," click Search, and then click to view "Add buttons, check boxes, or other controls to a worksheet."

NOTE: If the Assistant is hidden, click the Office Assistant button on the Standard toolbar. If Microsoft Excel Help is not installed on your computer, please see the following article in the Microsoft Knowledge Base:

   ARTICLE-ID: Q120802
   TITLE     : Office: How to Add/Remove a Single Office
               Program or Component

Additional query words: XL97
Keywords          : kbprg kbtool kbdta kbdtacode xldraw KbVBA 
Version           : WINDOWS:97
Platform          : WINDOWS
Issue type        : kbbug

Last Reviewed: May 18, 1999