禁用“下一步”安装脚本中的按钮

发布于 2024-12-02 23:18:10 字数 208 浏览 3 评论 0原文

使用InstallShield - InstallScript 项目:

我制作了一个用于浏览文件的自定义对话框。

在对话框初始化时,我想禁用“下一步”按钮。

我成功地禁用了该对话框中的其他按钮,除了安装向导的任何按钮:“取消”、“下一步”和“后退”。

我使用了函数 _WinSubEnableControl 或 EnableWindow。

Using InstallShield - InstallScript project:

I made a custom dialog for browsing for a file.

On the dialog initialization I want to disable the "Next" button.

I am successful in disabling other buttons on this dialog except for any of the buttons of the install wizard: Cancel, Next and Back.

I used the functions _WinSubEnableControl or EnableWindow.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

海风掠过北极光 2024-12-09 23:18:10

它对我有用:

   function
     HWND    hwndDlg, hwndNext;
     ...
   begin
     ...
     hwndDlg = CmdGetHwndDlg( strDialogName );
     hwndCtrl = GetDlgItem(hwndDlg, NEXT);
     EnableWindow(hwndCtrl, FALSE);
     ...
   end;

如果您觉得这没有用,请发布您的代码。

It works for me:

   function
     HWND    hwndDlg, hwndNext;
     ...
   begin
     ...
     hwndDlg = CmdGetHwndDlg( strDialogName );
     hwndCtrl = GetDlgItem(hwndDlg, NEXT);
     EnableWindow(hwndCtrl, FALSE);
     ...
   end;

If you didn't find this useful, please publish your code.

梦魇绽荼蘼 2024-12-09 23:18:10

禁用按钮的代码应该在调用 SdGeneralInit 之后。
如果你把它放在之前(就像我所做的那样),更改将不会保留。

对 SdGeneralInit 的调用显式启用“下一步”按钮,这就是为什么它不适用于“下一步”按钮,但适用于对话框上的其他自定义按钮。

它应该看起来像这样:

case DLG_INIT:    

    SdGeneralInit( szDlg, hwndDlg, 0, szSdProduct );

    hDlgHandle = CmdGetHwndDlg(szDlg);          
    hNextButton = GetDlgItem(hDlgHandle, 1); // 1 is the id for the next button.            
    EnableWindow(hNextButton, FALSE);

The code for disabling the button should be after the call to SdGeneralInit.
If you put it before (like I did) the change won't stick.

The call to SdGeneralInit explicitly enables the "Next" button, that is why it did not work for the "Next" button but did work for the other custom buttons on the dialog.

It should look something like that:

case DLG_INIT:    

    SdGeneralInit( szDlg, hwndDlg, 0, szSdProduct );

    hDlgHandle = CmdGetHwndDlg(szDlg);          
    hNextButton = GetDlgItem(hDlgHandle, 1); // 1 is the id for the next button.            
    EnableWindow(hNextButton, FALSE);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文