|
|
|
 |
Invoking Chkdsk using WMI
|
Total Hit (1342) |
Besides returning system information, the Windows Management Instrumentation classes also expose methods that can be called from VB. In addition, the WMI supports the executing of SQL-style calls to retrieve specific information.
|
Rating
 |
|
 |
Obtaining Logical Disk Information using WMI
|
Total Hit (1345) |
Windows Script Host is built into Microsoft Windows 98, 2000, ME and XP. If you are running Windows 95 or NT4, you can download Windows Script Host from the Microsoft Windows Script Technologies Web site at http://msdn.microsoft.com/scripting/. Some information is not returned on non-NT-based system
....Read More |
Rating
 |
|
 |
How to Show SubItem Icons in the ListView
|
Total Hit (890) |
In perhaps the strangest (and most useless) of extended example, this code adds to each subitem the same icon displayed as the main item icon. I have yet to determine how (or if) a subitem-specific icon can be shown instead of duplicating the main item icon, or frankly, why one would ever want this
....Read More |
Rating
 |
|
 |
How to Toggle a Checkbox in a ListView
|
Total Hit (785) |
The routines here set and retrieve checked ListItems from a ListView control in report view.
Basically, here we are again using the enhanced comctl32.dll functionality, this time using the LVIS_STATEIMAGEMASK and LVIF_STATE to toggle the bits at &H1000 and &H2000. In addition, by using the messag
....Read More |
Rating
 |
|
 |
How to Track Cursor Movement in a ListView
|
Total Hit (1097) |
The methods presented here are a bit different. The first (Check1) causes the mouse cursor to change into a hand, and as it moves over the ListView items, causes the item below to become underlined as a visual aid. This is similar to the visual clue in Internet Explorer when a hyperlink is encounter
....Read More |
Rating
 |
|
 |
Simulating a TopIndex Property for a ListView
|
Total Hit (784) |
A listview control's EnsureVisible method provides a means to bring a referenced item into view. Ditto, the LVM_ENSUREVISIBLE message simply "ensures that a list-view item is either entirely or partially visible, scrolling the list-view control if necessary."
If the item of interest is back up t
....Read More |
Rating
 |
|
 |
Subclassing Listview Scrollbar Messages
|
Total Hit (960) |
When it is necessary for your application to maintain synchronization between two or more Listview controls - or two or more List boxes for that matter - as the user interacts with the primary ListView's control's scrollbar, subclassing must be used in order to determine the user's interaction refle
....Read More |
Rating
 |
|
 |
Using the ListView Checkbox
|
Total Hit (1310) |
By popular demand, here are several methods you can employ to perform a variety of ListView check box-related operations.
Setcheck: turns on the checkbox for the item passed as the value in the textbox.
GetChecked: displays a MsgBox with a list of currently-selected checked items and their List
....Read More |
Rating
 |
|
 |
Tying a Treeview and Listview Together via the Tag Property
|
Total Hit (996) |
Unlike most of the other treeview and listview code examples here on VBnet, this one doesn't use APIs. Its creation was prompted by a newsgroup question by someone wanting to have a treeview and listview with similar items, and to behave such that when the user selected a treeview item, the correspo
....Read More |
Rating
 |
|
 |
Changing a VB Toolbar to a Rebar-Style Toolbar
|
Total Hit (1043) |
Here's a quick routine to set a standard VB toolbar to a IE-style Rebar style control (aka 'coolbar') for IE4 Active Desktop users. The illustration shows the original and flattened style for the same toolbar.
Place a toolbar with images (and optionally text), and add a placeholder. Set the place
....Read More |
Rating
 |
|
 |
Fixing the IE5/MsComCtrl 5 Toolbar Problem
|
Total Hit (1308) |
After the introduction of IE5, users began complaining that their code, which had previously created flat toolbars, failed on systems with IE5 installed. In addition, whenever the text (caption) for a button was changed through code, and the new caption text length differed from that being replaced,
....Read More |
Rating
 |
|
 |
Adding Checkboxes to a Treeview via API
|
Total Hit (1568) |
Recent newsgroup postings have asked how to mimic the Advanced Options page displayed in Internet Explorer 4. Initially I thought of using the listview with checks and indents, but after someone suggested that the items on the page were collapsible, I investigated the treeview styles. Sure enough, a
....Read More |
Rating
 |
|
 |
Applying Special Effects to a TreeView
|
Total Hit (1131) |
The treeview is a special beast ... compared to the listview, in my opinion, a lot more complicated to manipulate via API. Instead of referring to items as simple indices based on order, each treeview item has an item handle, and it is this that is used when manipulating treeview items (see the cod
....Read More |
Rating
 |
|
 |
Duplicating the Contents of a Treeview
|
Total Hit (1494) |
The three routines below combine to produce an effective way to duplicate a TreeView with all its data. No API is used, yet the method executes quite quickly. To maximize speed when copying large treeviews, set the receiving treeview's visible property to False before beginning the copy.
The meth
....Read More |
Rating
 |
|
 |
Toggling Checkbox Visibility in a Treeview
|
Total Hit (1007) |
So now that the ability to display checkboxes has been added to the application (Adding Checkboxes to a TreeView via API), there may be times when it is desirable to hide this functionality. Simply resetting the TVS_CHECKBOXES flag does not do this, as the state image icons are still attached to the
....Read More |
Rating
 |
|
 |
Using the ChooseColor Common Dialog API
|
Total Hit (1598) |
Although the API uses a structure to pass parameters to the ChooseColor API, the dialog can be shown by providing just the flags, hwndOwner, lStructSize and lpCustColors members completed. Other options, such as a hook, can be added to provide additional functionality such as positioning, custom cap
....Read More |
Rating
 |
|
|
 |
Using the GetOpenFileName Common Dialog API - Overview
|
Total Hit (1638) |
This page details the descriptions of Windows GetOpenFileName and GetSaveFileName API methods. The related demo code pages show how to call the APIs, as well as demonstrating how to retrieve the constituent parts of the file string returned.
To access both of the file common dialogs, the OPENFILEN
....Read More |
Rating
 |
|
 |
Using the GetOpenFileName Common Dialog API
|
Total Hit (1376) |
This page provides the detailed code and descriptions required for the Common Dialog GetOpenFileName API, as well as showing how to retrieve the constituent parts of the file string returned.
Code comments are at a minimum here. For detailed descriptions of the OPENFILENAME structure used and the
....Read More |
Rating
 |
|
 |
Using the GetSaveFileName Common Dialog API
|
Total Hit (1569) |
This page provides the code required for the Common Dialog GetSaveFileName API method. OPENFILENAME member descriptions, as well as commented code, are covered in the pages above. Except for the Flags and API name, the code is pretty well a duplicate of the GetOpenFileName code.
....Read More |
Rating
 |
|
 |
Centering the Open & Save Common Dialogs Using Callbacks
|
Total Hit (1173) |
The Common Dialog API provides a simple and powerful replacement to the Common Dialog control for projects using the file open or save methods. Not burdened by the baggage of properties, the API solutions also offer a significant performance increase. And all this comes in calls that still allow man
....Read More |
Rating
 |
|
 |
Centering the Open & Save Common Dialogs Using Callbacks, Advanced
|
Total Hit (1375) |
Centering the Open & Save Common Dialogs Using Callbacks showed just how simple implementing a window hook for the OPENFILENAME structure can be. Here we expand upon that same code to provide additional positioning options - centred to the screen, to the parent form, or allow the dialog to take its
....Read More |
Rating
 |
|
 |
Hooking the Open & Save Common Dialogs To Manipulate Components
|
Total Hit (1551) |
Now that you're an expert at centering a common dialog using hooks its time to look at customizing other aspects of the dialog window. A frequent request is a method to set custom captions for the various buttons and static fields (labels) on the dialog. This page addresses this request.
Again the
....Read More |
Rating
 |
|
 |
Determining Free Disk Space in Win95/Win98 with GetDiskFreeSpace
|
Total Hit (905) |
The routine presented here to determine a drive's available disk space will return incorrect results on volumes over 2 gigabytes, as supported by the FAT32 partitions implemented in Windows95 OEM Service Pack 2, Windows 98 (without FAT32 conversion) and NT4. See the comments section following the co
....Read More |
Rating
 |
|
 |
Determining Free Disk Space on a Fat32 (or NTFS) Drive
|
Total Hit (1898) |
The routine presented here will return the correct free and used disk sizes on volumes over 2 gigabytes as supported by the FAT32 partitions implemented in Windows95 OEM Service Pack 2, aka OSR2, and in Windows 98 where the Fat32 drive conversion has been made, or on NTFS partitions on NT4, Windows
....Read More |
Rating
 |
|
 |
Determining if a Floppy Drive is Ready
|
Total Hit (1323) |
Visual Basic provides a few ways to test for the readiness of a removable drive both with intrinsic methods and with the assistance of the API. Each method has its advantages.
Most developers are familiar with the first method around since VB1 - performing a simple Dir() against the drive, trappin
....Read More |
Rating
 |
|
|