|
代码来了:
//http://bbs.wuyou.net/forum.php?mod=redirect&goto=findpost&ptid=205402&pid=3083801&fromuid=378114
//https://msdn.microsoft.com/en-us/library/aa363480(VS.85).aspx
TEAM ENVI^ ENVIMODE=1| ENVI^ FORCELOCAL=1
SET &WM_DEVICECHANGE=0x0219
SET &DBT_DEVICEREMOVECOMPLETE=0x8004 //Device has been removed.
SET &DBT_DEVICEARRIVAL=0x8000 //A device has been inserted and is now available.
SET &DBT_CONFIGCHANGED=0x0018 //Current configuration has changed.
WIN1
_SUB WIN1,W287H254,盘符监视,
ENVI @this.Visable=1 //不显示
ENVI @this.MSG=%WM_DEVICECHANGE%::&&wp,&&lp, OnDriveChange %&wp% %&lp%
_END
_SUB OnDriveChange // %&wp% %&lp%
///在这里绣花了。。。自己绣吧
IFEX $%&wp%=%&DBT_DEVICEREMOVECOMPLETE%, //Device has been removed.
{*
THREAD+ MESS Device has been removed.
EXIT _SUB
}
IFEX $%&wp%=%&DBT_DEVICEARRIVAL%, //A device has been inserted and is now available.
{*
THREAD+ MESS A device has been inserted and is now available.
EXIT _SUB
}
IFEX $%&wp%=%&DBT_CONFIGCHANGED%, //Current configuration has changed.
{*
THREAD+ MESS Current configuration has changed.
EXIT _SUB
}
_END
|
|