如何更改安装脚本中的复选框属性?
我制作了显示两个复选框的对话框。
我使用 AskOptions 功能创建了对话框,如下所示:
nResult = AskOptions(NONEXCLUSIVE,szProduct ,
"Install Client", Client,
"Install Server",Server);
现在,我有条件检查用户是否具有管理员权限,如果没有,我想禁用第二个(服务器)复选框。
我应该如何通过 installscript 更改他的“Enabled”属性?
谢谢,
沙查萨
ive made dialog that shows two checkboxes.
i made the dialog with AskOptions function, like this :
nResult = AskOptions(NONEXCLUSIVE,szProduct ,
"Install Client", Client,
"Install Server",Server);
now, i have condition that check if the user has administrator privileges , if he doesnt has , i want to disable the second (server) checkbox.
how should i change his "Enabled" property through installscript ?
thanks,
shacharsa
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
更好的方法是修改 AskOptions 对话框的源代码。
The better way is modify AskOptions dialogs' source code.