PRB: Enumerated Data Types in DBGRID32.OCX
ID: Q191835
|
The information in this article applies to:
-
Microsoft Visual Basic Learning, Professional, and Enterprise Editions for Windows, versions 5.0, 6.0
SYMPTOMS
When using the Microsoft Data Bound Grid Control (DBGRID32.OCX) in Visual
Basic, one of two symptoms can occur:
- The autolist may not drop down enumerated types for some declared
properties.
-or-
- In the Object Browser, some enumerated types cannot be viewed because
they are hidden.
CAUSE
The enum data types for the Data Bound Grid Control are defined in the Type
Library. The constants defined in the those enum data types are hidden;
therefore, you cannot view the contents of the enum datatypes.
RESOLUTION
If you are declaring a variable as:
Dim x As enumSplitSizeModeConstants
then this should be modified to read:
Dim x As SplitSizeModeConstants
STATUS
This behavior is by design.
MORE INFORMATION
Although the Microsoft Data Bound Grid Control (DBGRID32.OCX) ships with
Visual Basic 6.0, a new control called the Microsoft DataGrid Control 6.0
(MSDATGRD.OCX) is also included with Visual Basic 6.0. This new control
does not exhibit the above-mentioned behavior.
Steps to Reproduce the Autolist Drop Down Behavior
- Start Visual Basic and open a Standard EXE project. Form1 is created
by default.
- Under the Project menu, select Components. A dialog will be shown
that lists all the available controls. In the Controls tab, check
the "Microsoft Data Bound Grid Control" (DBGRID32.OCX), then click OK.
The control will be added to the Visual Basic components toolbar.
- Add a DBGrid control to Form1.
- In any event procedure, type the following code:
Dim x As enumSplitSizeModeConstants
- When you type "x =" you will notice that the autolist box does not
appear as expected.
- Now, change the DIM statement above to:
Dim x As SplitSizeModeConstants
- Notice that when you type "x =" you get a list of enumerated types.
Steps to Reproduce the Hidden Type in Object Browser Behavior
- Start Visual Basic and open a Standard EXE project. Form1 is created
by default.
- Add the "Microsoft Data Bound Grid Control" (DBGRID32.OCX) to the Visual
Basic components toolbar.
- From the View Menu, select Object Browser or Press the F2 key.
- Select MSDBGrid from the Project/Library drop-down list box.
- Under the Classes list box, select Split.
- Under the Members of "Split" list box, select SizeMode.
- You will see in the bottom frame that SizeMode is declared as
enumSplitSizeModeConstants.
- Click on enumSplitSizeModeConstants. Visual Basic will display the
message, "Cannot jump to 'enumSplitSizeModeConstants' because it is
hidden."
Additional query words:
kbDSupport kbDSD kbVBp kbVBp500 kbVBp600 kbCtrl
Keywords : kbGrpVB
Version :
Platform : WINDOWS
Issue type : kbprb