首页  编辑  

监视光驱中是否有光盘

Tags: /超级猛料/Hardware.硬件相关/驱动器相关/光驱/   Date Created:

]、。·ˉˇ¨〃々—~‖…’”〕〉》」』〗】∶!"'),.:;?]` 拦截消息WM_DEVICECHANGE即可!

//响应该消息

procedure Tform1.WMDEVICECHANGE(var msgx :Tmessage);

const

 DBT_DEVICEARRIVAL=$8000;

 DBT_DEVICEREMOVECOMPLETE=$8004;

begin

 inherited;

 case msgx.WParam of

   DBT_DEVICEARRIVAL:Caption :='有了!';

   DBT_DEVICEREMOVECOMPLETE:Caption :='取走了';

 end;

end;