<output id="qn6qe"></output>

    1. <output id="qn6qe"><tt id="qn6qe"></tt></output>
    2. <strike id="qn6qe"></strike>

      亚洲 日本 欧洲 欧美 视频,日韩中文字幕有码av,一本一道av中文字幕无码,国产线播放免费人成视频播放,人妻少妇偷人无码视频,日夜啪啪一区二区三区,国产尤物精品自在拍视频首页,久热这里只有精品12

      (轉(zhuǎn)載)Setup Factory 會話變量

      本文轉(zhuǎn)自http://www.rzrgm.cn/lzjsky/archive/2010/11/18/1880440.html 方便今后查詢

      Session variables are special types of variables that are expanded at runtime when they are used. When they are used on screens, their values are automatically expanded for you, however if a session variable is used in an action script, it must be manually expanded using the SessionVar.Expand action.

      While there are predefined session variables available to use, you can also create custom session variables at design time and run time. At design time, they can be defined on theSession Variables tab of the Project Settings dialog. At run time, you can create and manipulate session variables using the available SessionVar actions.

      Note: If a session variable used on a screen needs to be set to a different value, it must be set prior to the screen's displaying, and all of its events. Another option is to set the text of the screen control using the appropriate Dlg***.SetProperties action. Any changes made to a session variable on a screen after the screen has been created (just before the On Preload event) will have no effect.

      The following pre-defined session variables are available in Setup Factory:

      %AppFolder%

      Your application's main directory, where all of your files and folders will be installed. For example, by default Setup Factory's main directory is C:\Program Files\Setup Factory 7.0.

      %AppFolder% is initially set to the default value that you give it on the Session Variables tab of the Project Settings dialog. However, in most installations, the value of %AppFolder% will ultimately be set by the user on the Select Install Folder screen, overriding the default value.

      %ApplicationDataFolder%

      The path to the per-user Application Data folder on the user's system. This folder serves as a common repository for application-specific data. Typically, this path is something like "C:\Documents and Settings\YourName\Application Data."

      %ApplicationDataFolderCommon%

      The path to the all-user Application Data folder on the user's system. This folder servers as a common repository for application-specific data. Typically this is something like "C:\Documents and Settings\All Users\Application Data."

      %AppShortcutFolderName%

      The name of the shortcut folder on the Start menu where your application's shortcuts will be stored.

      %AppShortcutFolderName% is initially set to the default value that you give it on the Session Variables tab of the Project Settings dialog. However, in many installations, the value of %AppShortcutFolderName% will ultimately be set by the user on the Select Shortcut Folder screen, overriding the default value %ProductName%.

      %AppDrive%

      The drive letter of %AppFolder%. You should not set this variable explicitly. It is reset every time that %AppFolder% is re-assigned. For example, if %AppFolder% is C:\Program Files\My Program, %AppDrive% will be C:.

      %CommonFilesFolder%

      The user's Common Files folder. Typically, this is something like: C:\Program Files\Common Files.

      %CompanyName%

      Your company’s name. The value of this variable is set on the Session Variables tab of the Project Settings dialog.

      %CompanyURL%

      Your company’s URL. The value of this variable is set on the Session Variables tab of the Project Settings dialog.

      %Copyright%

      The copyright message for your product. The value of this variable is set on the Session Variables tab of the Project Settings dialog.

      %DAOPath%

      The path to the user's DAO (Data Access Objects) directory.

      %DesktopFolder%

      The path to the user's Desktop folder. On Windows NT/2000/XP, this is the path from the per-user profile.

      %DesktopFolderCommon%

      The path to the user's Desktop folder. On Windows NT/2000/XP, this is the path from the All Users profile. On a non-Windows NT system, this will simply be the path to the user's Desktop folder (the same as _DesktopFolder).

      %FontsFolder%

      The path to the user’s font directory (e.g. "C:\Windows\Fonts").

      %MyDocumentsFolder%

      The user's personal (My Documents) folder on their system. Usually this is something like "C:\Documents and Settings\YourName\My Documents" on Windows 2000/XP and "C:\My Documents" on Windows 98/ME.

      Note: Windows 95 did not have the My Documents folder and this variable will return "C:" if run on such a system.

      %ProductName%

      The name of the product that you are installing. The value of this variable is set on the Session Variables tab of the Project Settings dialog.

      %ProductVer%

      The version number of the product that you are installing. The value of this variable is set on the Session Variables tab of the Project Settings dialog.

      %ProgramFilesFolder%

      The user's Program Files folder (typically, this is something like "C:\Program Files").

      %RegOwner%

      The name of the registered user of the system.

      %RegOrganization%

      The organization of the registered user of the system.

      %SourceDrive%

      The drive that the installation executable was run from (e.g. "C:" or "D:").

      %SourceFolder%

      The full path to the folder that the installation executable was run from (e.g. "C:\Downloads" or "D:\").

      %SourceFilename%

      The full path, including the filename, for the current setup executable.

      For example, if the user was running "setup.exe" from "C:\Downloads", %SourceFilename% would be expanded to "C:\Downloads\Setup.exe".

      %StartFolder%

      The path to the user's Start menu folder. On Windows NT/2000/XP, this is the path from the per-user profile.

      %StartFolderCommon%

      The path to the user's Start menu folder. On Windows NT/2000/XP, this is the path from the All Users profile. On a non-Windows NT system, this will simply be the path to the user's Start menu folder (the same as %StartFolder%).

      %StartProgramsFolder%

      The path to the Programs folder in the user's Start menu. On Windows NT/2000/XP, this is the path from the per-user profile.

      %StartProgramsFolderCommon%

      The path to the Programs folder in the user's Start menu. On Windows NT/2000/XP, this is the path from the All Users profile. On a non-Windows NT system, this will simply be the path to the Programs folder in the user's Start menu (the same as %StartProgramsFolder%).

      %StartupFolder%

      The path to the user's Startup folder. On Windows NT/2000/XP, this is the path from the per-user profile.

      %StartupFolderCommon%

      The path to the user's Startup folder. On Windows NT/2000/XP, this is the path from the All Users profile. On a non-Windows NT system, this will be the path to the user's Startup folder (the same as %StartupFolder%).

      %SystemFolder%

      The path to the user’s Windows System folder (e.g. "C:\Windows\System").

      %SystemDrive%

      The drive that the user's Windows System directory is located on (usually "C:").

      %TempFolder%

      The path to the user's Temp folder.

      %TempLaunchFolder%

      The path to the temporary directory where Setup Factory extracts the files it will need for the installation. (For example, this is the directory where Primer files are extracted to.) During the uninstall, this variable contains the path to the uninstall files folder. This is the folder that the uninstall configuration file is located.

      Usually this directory will be the user's temporary directory, unless the user overrides the temporary directory with the /T command line option.

      %WindowsFolder%

      The path to the user’s Windows folder (e.g. "C:\Windows").

      %WindowTitle%

      The text that will appear on the windows task bar while the installation is running. The value of this variable is set on the Session Variables tab of the Project Settings dialog.

      posted @ 2016-03-11 14:30  我丫的是條魚  Views(654)  Comments(0)    收藏  舉報
      主站蜘蛛池模板: 羞羞影院午夜男女爽爽免费视频 | 美女内射毛片在线看3d| 成人午夜视频一区二区无码| 国产成人综合在线观看不卡| 亚洲精品久久婷婷丁香51| 屯昌县| 午夜精品福利亚洲国产| 国产亚洲精品成人aa片新蒲金| 四虎精品免费永久免费视频| 亚洲av成人区国产精品| 日本偷拍自影像视频久久| 开心色怡人综合网站| 搡老熟女老女人一区二区| 国产老熟女视频一区二区| 伊人久久精品无码麻豆一区| 怀远县| 97久久久亚洲综合久久| 成人免费无码大片A毛片抽搐色欲| 亚洲精品无码久久久影院相关影片 | 国产在线视频精品视频| 亚洲熟妇精品一区二区| 久久av无码精品人妻出轨| 国产小视频一区二区三区| 国产高清自产拍av在线| 精品国产第一国产综合精品| 国产精品大全中文字幕| 久久国产精品波多野结衣av| 亚洲熟女精品一区二区| 久久精品国产99国产精品严洲| 比如县| 97久久精品人人做人人爽| 精品麻豆国产色欲色欲色欲WWW | 精品国产中文字幕av| 亚洲男女羞羞无遮挡久久丫| 日韩免费美熟女中文av| 伊人久久综合无码成人网| 日韩中文字幕高清有码| 亚洲日本精品国产第一区| 精品国产一区二区三区大| 亚洲AV永久无码嘿嘿嘿嘿| av午夜福利亚洲精品福利|