InstallShield Custom Dialog

时间:2022-12-29 00:10:57

InstallShield 2008

Screen Layout is designed as below. Use toolbox to edit screen layout.

InstallShield Custom Dialog

1> Set properties for each control:

RadioButtonGroup1

Rank1 (RadioButton)

Rank2 (RadioButton)

[Property]: Rank

[Text]: I’m No.1

[Text]: I’m No.2

[Order]: 1

[Order]: 2

[Value]: No1

[Value]: No2

2> Insert AFun dialog between InstallWelcom and LicenseAgreement.

InstallShield Custom Dialog

InstallShield Custom Dialog

InstallShield Custom Dialog

3> Set default checked radio button.

Browse to Direct Editor, go to Property Table, find RadioButtonGroup1’s Property name: Rank

Set its Value as No2, same as Rank2 (RadioButton)’s Value.

InstallShield Custom Dialog

4> Set associated actions between radio button and Next button.

If “I’m No.1” is checked, Enable Next>

If “I’m No.2” is checked, Disable Next>

Go to ControlCondition Table, set Action for each Condition.

InstallShield Custom Dialog

5> Build project and run.

InstallShield Custom Dialog

InstallShield Custom Dialog

InstallShield Custom Dialog的更多相关文章

  1. InstallShield Clone dialog

    Browse to Dialogs view, right-click an existing dialog, click Clone and rename the cloned dialog. Wh ...

  2. Installshield: custom action return value

    参考:MSDN: Custom Action Return Values 参考:MSDN: Logging of Action Return Values

  3. Animate a custom Dialog,自定义Dialog动画

    Inside res/style.xml <style name="AppTheme" parent="android:Theme.Light" /&gt ...

  4. InstallShield 创建自己的Dialog

    1.在"User Interface"-"Dialogs"下,在All Dialogs右击"New Dialogs-"创建自己的Dialog ...

  5. installshield中的installscript编程

    上一篇说道了InstallShield高速建立一个打包程序,如今说说InstallShield里面的installscript脚本. 该文属于个人理解.參考一些相关文章. 相关资料下载地址:http: ...

  6. Android自定义对话框&lpar;Dialog&rpar;位置&comma;大小

    代码: package angel.devil; import android.app.Activity;import android.app.Dialog;import android.os.Bun ...

  7. Android中制作自定义dialog对话框的实例

    http://www.jb51.net/article/83319.htm   这篇文章主要介绍了Android中制作自定义dialog对话框的实例分享,安卓自带的Dialog显然不够用,因而我们要继 ...

  8. Android Dialog用法

    摘要: 创建对话框 一个对话框一般是一个出现在当前Activity之上的一个小窗口. 处于下面的Activity失去焦点, 对话框接受所有的用户交互. 对话框一般用于提示信息和与当前应用程序直接相关的 ...

  9. Android 自定义对话框&lpar;Dialog&rpar;位置&comma;大小

    代码: package angel.devil; import android.app.Activity; import android.app.Dialog; import android.os.B ...

随机推荐

  1. 使用FIO对SATA、SSD和PCIe Flash进行测试

    首先声明,同事做的实验 使用fio对SATA.SSD.PCIE进行了测试 测试说明: 1.测试命名   sync_write_4k_32      sync表示测试方式,可以是sync或者libaio ...

  2. &lbrack;CSS&rsqb;多浏览器兼容的垂直居中,兼容多个IE

    相信你都是在兼容垂直居中而烦恼,翻阅多个网站总是找不到理想的方法而苦恼,来到这里你的问题解决了!如果对你有帮助请点个赞,谢谢. 多兼容垂直居中,在IE6-9亲自测试并通过 <!doctype h ...

  3. class的使用

    class test(object): """ get被称之为test对象的方法 """ def __init__(self,var1): ...

  4. 好!maximum-product-of-word-lengths

    以后看到个数比较少,性能比较高,就要第一时间想到位操作! 这道题目mock没有通过.超时了...... 原来题目解法的思路非常非常好! 开始我关注于降低n*n的复杂度,但是这道题目复杂度高在每个字符串 ...

  5. 超人学院Hadoop大数据资源分享

    超人学院Hadoop大数据资源分享 http://bbs.superwu.cn/forum.php?mod=viewthread&tid=770&extra=page%3D1 很多其它 ...

  6. Java编程语言下Selenium驱动各个浏览器代码

    这里采用的是Selenium3.7版本,首先介绍的是在Windows环境下运行的: 总结下注意事项: 1,设置各个浏览器的Driver路径 System.setProperty("&quot ...

  7. Android虹软人脸识别sdk使用工具类

    public class FaceUtil { private static final String TAG = FaceUtil.class.getSimpleName(); private st ...

  8. MyBatis配置:在控制台打印SQL语句

    1.在spring-mybatis.xml中配置语句 注意:value=”classpath:mybatis-config.xml”这个文件如果之前没有,是需要新建的  2.新建mybatis-con ...

  9. Natural Language Generation&sol;Abstractive Summarization

    调研目的: 了解生成式文本摘要的常用技术和当前的发展趋势,明确当前项目有什么样的摘要需求,判断现有技术能否用于满足当前的需求,进一步明确毕业设计方向及其可行性 调研方向: 项目中需要用到摘要的地方以及 ...

  10. learning scala read from file

    scala读文件:   example: scala> import scala.io.Sourceimport scala.io.Source scala> var inputFile ...