Delphi中启用禁止CD驱动器自动运行播放


本文整理自网络,侵删。

 

type
TAutoPlayForm = class(TForm)
chkNoAutoPlay: TCheckBox;
procedure FormCreate(Sender: TObject) ;
private
procedure WindowProcedure(var Msg : TMessage) ;
end;

var
AutoPlayForm: TAutoPlayForm;

Message_QueryCancelAutoPlay : Cardinal;

implementation

{$R *.dfm}

procedure TAutoPlayForm.WindowProcedure(var Msg: TMessage) ;
begin
if (Message_QueryCancelAutoPlay = Msg.Msg) then
begin
if chkNoAutoPlay.Checked then
Msg.Result := 1 //disable auto-play
else
// www.delphitop.com
Msg.Result := 0; //enable auto-play
end
else
inherited WndProc (Msg) ;
end;

procedure TAutoPlayForm.FormCreate(Sender: TObject) ;
begin
Self.WindowProc := WindowProcedure;

Message_QueryCancelAutoPlay := RegisterWindowMessage('QueryCancelAutoPlay') ;
end;

相关阅读 >>

Delphi checklistbox用法

Delphi fdmemtable1 内存表字段排序

Delphi最全面的dbgrid点击标题实现排序

Delphi 让combobox只允许输入数字和回车键以及Delphi key值表

Delphi xe5 android实现繁体字到简体字的转换函数

Delphi 写的经常用到的加解密函数

Delphi 一个高效的正整数排序函数

Delphi xe10 获取屏幕截图

Delphi多线程程序示例

Delphi 用iisreset命令重启iis

更多相关阅读请进入《Delphi》频道 >>



打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...