ImageVerifierCode 换一换
格式:PPT , 页数:34 ,大小:587KB ,
资源ID:374338      下载积分:2000 积分
快捷下载
登录下载
邮箱/手机:
温馨提示:
如需开发票,请勿充值!快捷下载时,用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)。
如填写123,账号就是123,密码也是123。
特别说明:
请自助下载,系统不会自动发送文件的哦; 如果您已付费,想二次下载,请登录后访问:我的下载记录
支付方式: 支付宝扫码支付 微信扫码支付   
注意:如需开发票,请勿充值!
验证码:   换一换

加入VIP,免费下载
 

温馨提示:由于个人手机设置不同,如果发现不能下载,请复制以下地址【http://www.mydoc123.com/d-374338.html】到电脑端继续下载(重复下载不扣费)。

已注册用户请登录:
账号:
密码:
验证码:   换一换
  忘记密码?
三方登录: 微信登录  

下载须知

1: 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。
2: 试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓。
3: 文件的所有权益归上传用户所有。
4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
5. 本站仅提供交流平台,并不能对任何下载内容负责。
6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

版权提示 | 免责声明

本文(Developing multilingual installation programs using .ppt)为本站会员(赵齐羽)主动上传,麦多课文库仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知麦多课文库(发送邮件至master@mydoc123.com或直接QQ联系客服),我们立即给予删除!

Developing multilingual installation programs using .ppt

1、1,Developing multilingual installation programs using InstallShield for Windows Installer,David L. Cole IBM Corporation Research Triangle Park, NC ,2,Why were here.,No matter how good your application is, Your customers first experience is.,The install program!,New technologies exist,- The Windows I

2、nstaller,- Development tools (InstallShield),Thats what were here to talk about!,3,Topics,A background on Microsofts Windows Installer service A description of the InstallShield for Windows Installer tool Examples of multilingual install programs Details on how to design and develop multilingual ins

3、tall programs Explanation of how and where Unicode is used in the process Hints, tips, and gotchas References,4,What is a multilingual installation program?,Installation Program,5,What is the Windows Installer?,Microsofts Windows Installer is a new installation service that consists of: an operating

4、 system resident installation service a standard format for component management a management API for applications and tools. Is a key component of Windows 2000, also available for other Windows versions (Windows 95, 98, and NT 4.0) Also known as “MSI” Not an authoring environment! 3rd party vendors

5、 (e.g., InstallShield, Wise) provide development tools,6,Why Windows Installer?,Better management of shared resources Consistent enforcement of installation rules Easy customization by administrators Facilitated selection of desired application features Automatic repair of configuration problems In

6、essence: reduced support costs for software providers a much improved experience for administrators and end-users,7,An operating system resident installation service.,Part of the operating system! Enforces consistent installation rules Service is “engine” for install program data Manages shared comp

7、onents on behalf of an application Can run at elevated privilege level on Windows NT/2000 e.g., non-administrators may install services Built-in to Windows 2000, and available on Windows 95, Windows 98, and Windows NT 4.0 Use is required for new “Certified for Microsoft Windows” logo (except for ser

8、ver products, for the time being),8,A standard format.,“Data” for operating system install “Engine” Install program is actually a collection of data tables Establishes product / feature / component hierarchy Incorporates “standard” actions such as installing fonts Extendable with custom actions “.ms

9、i” file extension May be opened and extended with development tools such as InstallShield for Windows Installer,9,Components and features,“Atomic” unit of installation Collection of files, registry keys, etc. that are all installed together Uniquely defined and automatically shared by OS Not visible

10、 to the user Typical method of distinguishing OS-specific and language-specific resources,Groupings of components How groups of components are selected to be installed or uninstalled Exposed to the user Maintains “feature state” Install locally Run from source Install on demand Do not install,Compon

11、ents,Features,10,Product (Office),Products, Features, & Components,11,Product (MyProduct),Products, Features, & Components,12,Feature selection example,13,Feature selection example.,14,Data table example,15,A management API for applications and tools.,Tightly coupled with the Windows Shell Manages f

12、ile paths on behalf of an application enables roaming user support Ensures that requested applications/features are both installed and complete enables install-on-demand (Advertising) enables self-repair Maintains an inventory of installed applications/features Plays role in enforcing system policie

13、s,16,InstallShield for Windows Installer (ISWI),A development tool for authoring Windows Installer-based install programs Creates data tables which compose the .msi file Includes wizards for stepping you through creating a standard project compiling the .msi file and building the output media creati

14、ng custom action controls creating components adhering to best practices Also includes support for creating multilingual installs!,17,ISWI input and output,I SWI,Note: numerous different build options exist,18,Setup.exe function flow,Determine default language (via user locale) Display language sele

15、ction panel Query Windows Installer version Install Windows Installer service, if needed Launch Windows Installer service (msiexec.exe) Apply selected language transform Install product Pass command line parameters,19,Product (Demo),Resource (cards.dll),A demo of ISWI,20,Localizing an install progra

16、m,Add entries to English (or default) string table for any translatable text used in messages or added to dialogs Ensure that custom messages and dialogs reference string table entries Export string table of default language and translate into supported languages Import translated string table for e

17、ach language InstallShield-provided strings are already translated but may be edited Verify controls on custom dialogs are properly sized Thats it!,21,Designing a multilingual install program - Type I,Language chosen at product build time Set of supported languages selected via Project Wizard or Pro

18、ject Properties Language-dependent components identified via Languages field of each component (Setup Design view) At build time (using the Release Wizard), filter application by selected language (Filtering Settings dialog) Include only the selected language and make default (Setup Languages dialog

19、) Result: single language version of application, with matching language of install program,22,Designing a multilingual install program - Type II,Language chosen at product install time Set of supported languages selected via Project Wizard or Project Properties Language-dependent components identif

20、ied via Conditions field (ProductLanguage property) of each component (Setup Design view) At build time (using the Release Wizard), do not filter application by language Include all languages, and check “Display the Setup Languages dialog” (Setup Languages dialog) Result: setup.exes language selecti

21、on panel chooses language version of application and language of install program,23,Designing a multilingual install program - Type III,Language chosen at product run time Applications user interface should include controls to choose language (good to couple with install on demand) Set of supported

22、languages (for install program) selected via Project Wizard or Project Properties Design feature/subfeature tree to list supported languages (allows user to easily add or remove languages) At build time (using the Release Wizard), do not filter application by language Include all languages, and chec

23、k “Display the Setup Languages dialog” (Setup Languages dialog) Result: setup.exes language selection panel chooses language of install program; user selects language version(s) of application to be installed.,24,Use of Unicode,Character strings within the .msi file Exported string files (both Unico

24、de and ASCII text) License Agreement text (.rtf file) MSI program interfaces,25,Hints, tips, and gotchas,Must install Windows language resources New Language Wizard command syntax for logging MsiZap Additional tets scenarios,Multiple files of same name to same target directory Filtering components w

25、ith a property set in the UI sequence Windows 95 bug re: dropdown list on language selection panel Adding language packs to an existing project,26,Resources,The Windows Installer Service, a white paper from Microsoft, available at http:/ “Roadmap to Windows Installer Documentation“ in the Microsoft

26、Platform SDK, and online at http:/ Application Specification for Microsoft Windows 2000 for distributed applications Version 1.0, available at http:/ InstallShield for Windows installer web page at http:/ InstallShield Knowledge Base at http:/ InstallShield for Windows Installer news groups at news

27、server installshield.iswi.general installshield.iswi.customaction installshield.iswi.international InstallSite web site at http:/www.installsite.org/,27,Supplemental Slides,The following slides show the language features of InstallShield for Windows Installer, and the accompanying text explains how

28、 these features are used to create the different types of multilingual installation programs.,28,Language features of ISWI,29,Language features of ISWI.,30,Language features of ISWI.,31,Language features of ISWI.,32,Language features of ISWI.,33,Language features of ISWI.,34,Language features of ISWI.,

copyright@ 2008-2019 麦多课文库(www.mydoc123.com)网站版权所有
备案/许可证编号:苏ICP备17064731号-1