FIX: GDI Resource Leak Using Checkboxes in ListView Control (224181)
The information in this article applies to:
- Microsoft Visual Basic Learning Edition for Windows 6.0
- Microsoft Visual Basic Professional Edition for Windows 6.0
- Microsoft Visual Basic Enterprise Edition for Windows 6.0
This article was previously published under Q224181 SYMPTOMS
While loading and unloading forms that contain ListView controls using Checkboxes, a large memory and GDI resource leak occurs.
CAUSE
The image list for the ListView control's Checkboxes is not being destroyed when the form is unloaded.
RESOLUTION
This problem can be worked around by setting the Checkboxes property at run-time rather than in the design environment. The Checkboxes property must be set to True in the form's Activate event and then to False in the form's QueryUnload event:
- Open a new Standard EXE project. Form1 is generated by default.
- From the Project menu, choose Components, select "Microsoft Windows Common Controls 6.0" and click OK.
- Add a second form (Form2) to the project.
- Add a ListView control (ListView1) to Form2. Leave the Checkboxes property for the control set to the default of False.
- Add the following code to Form2's Activate Event:
Private Sub Form_Activate()
' Set the ListView's checkboxes property to True.
ListView1.Checkboxes = True
' Do any initialization of the ListView here.
With ListView1
.ListItems.Add , , "Item 1"
.ListItems.Add , , "Item 2"
End With
End Sub
- Add the following code to Form2's QueryUnload event:
Private Sub Form_QueryUnload(Cancel As Integer, UnloadMode As Integer)
' Set the checkboxes property
' of the listview to False.
ListView1.Checkboxes = False
End Sub
- Add a CommandButton (Command1) to Form1. Add the following code to Form1's code window:
Private Sub Command1_Click()
Dim f As Form2
Dim i As Long
For i = 0 To 100
Set f = New Form2
f.Show
Unload f
DoEvents
Set f = Nothing
Next i
End Sub
- Start a program to monitor system resources as follows:
- Windows NT: Enter CTRL+ALT+DEL, and click Task Manager. Select the Performance tab.
- Windows 95/98/Me: Start the System Monitor tool, which is located in the System Tools folder in the Accessories folder. If the System Monitor tool is not available, it can be installed from the Control Panel using the
Add/Remove Programs option. On the Edit menu, click Add Item. Click the Memory Manager Category, click the Allocated Memory Item, and click OK.
- Run the project and click on the Command1 button on Form1. Notice the resource usage.Result: Excessive resource use doesn't occur.
STATUSMicrosoft has confirmed that this is a bug in the Microsoft products that are listed at the beginning of this article. This bug was corrected in the next service pack for Visual Studio 6.0. For additional information about Visual Studio service packs, click the following article numbers to view the articles in the Microsoft Knowledge Base: 194022 INFO: Visual Studio 6.0 Service Packs, What, Where, Why
194295 HOWTO: Tell That a Visual Studio Service Pack Is Installed To download the latest Visual Studio service pack, visit the following Microsoft Web site:
Modification Type: | Minor | Last Reviewed: | 12/12/2005 |
---|
Keywords: | kbBug kbCtrl kbfix kbListView kbResource kbVBp600fix kbVS600sp4fix kbVS600sp5fix KB224181 |
---|
|