 |
| Detecting changes in connections to removable drives (VFP9) |
User rating: 0/10 (0 votes) | |
|
|
 |
 |
Versions: click to open |
 |
|
 |
 |
| Before you begin: |
 |
VFP application can receive system notifications when a disk drive gets connected or disconnected (USB, network drive).
In this code sample, a ListView control on VFP form displays available disk drives using matching icons and descriptions.

Note that this code sample requires VFP9 version of the BINDEVENT() function. The one that can handle Windows messages.
See also:
Disconnecting USB Mass Storage Device programmatically
Mapping and disconnecting network drives
Enumerating Volumes and Volume Mounting Points
|
 |
 |
| |
| |
Members area. Log in to view this example. |
|
| |
|
|
|
|
|
 |
User rating: 0/10 (0 votes) | |
| 10044 bytes Created: 2011-01-07 17:18:05 Modified: 2011-05-06 09:05:14 Visits in 7 days: 226 |
|
 |
 |
| Listed functions: |
 |
|
 |
 |
| My comment: |
 |
The WM_DEVICECHANGE message notifies an application of a change to the hardware configuration of the computer.
Upon locking and ejection of removable storage devices (not limited to), the system broadcasts the WM_DEVICECHANGE message to notify applications and device drivers about changes in the configuration.
Examples of events that trigger the broadcasting of WM_DEVICECHANGE message:
USB flash drive inserted or ejected
external hard drive connected to USB port, or ejected
network drive mapped or disconnected
CD inserted in CD drive, or ejected
The main Visual FoxPro window ( _vfp.HWnd ) and any top-level form ( ShowWindow=2, ThisForm.HWnd ) normally receive WM_DEVICECHANGE messages.
VFP application can also deny or grant system requests for device removal (yet to be covered in this or another code sample).
* * *
.NET version of this code sample:

* * *
An installation CD/DVD disk may contain Autorun.inf file. Here is an example of the content.
[AutoRun]
open=Setup.exe
icon=Setup.exe
label=Linksys Router Setup
action=@Setup.exe,-10001
It makes sense, and Windows Explorer apparently behaves this way, depicting a device using whenever available the AutoRun.Label string, and the icon retrieved from the file the AutoRun.Open points at.
Use GetPrivateProfileString function for retrieving values from .ini and .inf files.
* * *
MIcrosoft Support, Article 163503. How to receive notification of CD-ROM insertion or removal |
 |
 |
| Word Index links for this example: |
 |
|
|
 |
 |
| Translate this page: |
 |
|