PRB: A "The Parameter Is Incorrect" Error Message Is Displayed By A Visual Basic SnapIn
ID: Q242319
|
The information in this article applies to:
-
Microsoft Management Console, versions 1.1, 1.2
-
Microsoft Visual Basic Professional and Enterprise Editions for Windows, version 6.0
SYMPTOMS
A Snap-in developed by the Microsoft Management Console (MMC) Snap-in Designer For Microsoft Visual Basic might display the following error message:
Runtime Error -2147024809 (80070057)
The Parameter Is Incorrect
CAUSE
A Toolbar control in the SnapIn project is attempting to use a bitmap from an Image List which is not 16x16 pixels in size.
RESOLUTION
Make sure that all Toolbar controls use bitmaps images that are exactly 16x16 pixels in size.
STATUS
This behavior is by design.
MORE INFORMATION
Steps to Reproduce Behavior
- Start Visual Basic and select a new SnapIn project from the New Project dialog box.
- Open the SnapIn1 Designer from the Project Explorer window and add a new Toolbar and Image List control. By default these news controls will be named ToolBar1 and ImageList1.
- View the properties of the Image List control, and insert a new bitmap image that is not 16x16.
- Give the Key field a value for the new image.
- View the properties of the Toolbar control, and set the ImageList field to ImageList1.
- On the Buttons tag, insert a new button on the toolbar.
- Set the Image field to the Key field of the bitmap image in the image list.
- Open the Snapin1 Designer's code window and paste in the following code:
Private Sub Views_SetControlbar(ByVal View As SnapInLib.View, ByVal Controlbar As SnapInLib.MMCControlbar)
Controlbar.Attach Toolbar1
End Sub
- Compile the SnapIn project and load it into MMC.
- Select the default static node, SnapIn1. The error mentioned in the "Symptoms" section appears.
- Change the bitmap image in the Image List control to a 16x16 bitmap.
- Retest the SnapIn. This time the error does not occur.
Additional query words:
snapin designer mmc
Keywords : kbMMC kbVBp600 kbGrpPlatform kbDSupport kbSnapIn
Version : WINDOWS:1.1,1.2,6.0
Platform : WINDOWS
Issue type : kbprb