?? xy.iss
字號:
; 腳本由 Inno Setup 腳本設計向導 創建。
; 有關創建 INNO SETUP 腳本的詳情請查閱幫助文檔!
[Setup]
AppName=絮語2007
AppVerName=絮語2007
AppPublisher=彭晉杰
AppPublisherURL=http://www.yhsee.com
AppSupportURL=http://www.yhsee.com
AppUpdatesURL=http://www.yhsee.com
DefaultDirName={pf}\奕華軟件\絮語
DefaultGroupName=奕華軟件
InfoAfterFile=Readme.txt
LicenseFile=license.txt
OutputBaseFilename=xychat
OutputDir=e:\htmls\soft
Compression=lzma
SolidCompression=yes
[Languages]
Name: ch; MessagesFile: "compiler:Languages\chs.isl"
[Files]
Source: "xychat.exe"; DestDir: "{app}"; Flags: ignoreversion
Source: "Readme.txt"; DestDir: "{app}"; Flags: ignoreversion
Source: "xychat.chm"; DestDir: "{app}"; Flags: ignoreversion
Source: "Riched20.dll"; DestDir: "{app}"; Flags: ignoreversion uninsneveruninstall onlyifdoesntexist
Source: "Riched32.dll"; DestDir: "{app}"; Flags: ignoreversion uninsneveruninstall onlyifdoesntexist
Source: "GdiPlus.dll"; DestDir: "{app}"; Flags: ignoreversion uninsneveruninstall onlyifdoesntexist
Source: "ImageOle.dll"; DestDir: "{app}"; Flags: ignoreversion uninsneveruninstall onlyifdoesntexist regserver
Source: "dat\*.*"; DestDir: "{app}\dat"; Flags: ignoreversion
Source: "plugin\*.*"; DestDir: "{app}\plugin"; Flags: ignoreversion
Source: "sound\*.wav"; DestDir: "{app}\sound"; Flags: ignoreversion
Source: "images\sys\*.*"; DestDir: "{app}\images\sys"; Flags: ignoreversion
Source: "images\char\*.*"; DestDir: "{app}\images\char"; Flags: ignoreversion
Source: "images\face\*.*"; DestDir: "{app}\images\face"; Flags: ignoreversion
[Icons]
Name: "{group}\絮語2007"; Filename: "{app}\xychat.exe" ;WorkingDir: "{app}"
Name: "{group}\絮語幫助"; Filename: "{app}\help\xychat.chm" ;WorkingDir: "{app}"
Name: "{group}\卸載絮語2007"; Filename: "{uninstallexe}" ;WorkingDir: "{app}"
Name: "{userdesktop}\絮語2007"; Filename: "{app}\xychat.exe"; WorkingDir: "{app}"
Name: "{userappdata}\Microsoft\Internet Explorer\Quick Launch\絮語2007"; Filename: "{app}\xychat.exe"; WorkingDir: "{app}"
[Run]
Filename: "{app}\xychat.exe"; Description: "運行 絮語2007"; Flags: nowait postinstall skipifsilent
[Code]
function NextButtonClick(CurPage: Integer): Boolean;
var
ErrorCode: Integer;
begin
case CurPage of
wpSelectDir:
begin
if fileexists(ExpandConstant('{app}\xychat.exe')) then
begin
MsgBox('在當前路徑檢測到舊版本.安裝前需要卸載舊版本.', mbInformation, MB_OK);
Exec(ExpandConstant('{app}\unins000.exe'), '', '',SW_SHOW,ewWaitUntilTerminated,errorcode);
end;
end;
end;
Result := True;
end;
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -