安装问题(200分)

  • 主题发起人 主题发起人 garnel
  • 开始时间 开始时间
G

garnel

Unregistered / Unconfirmed
GUEST, unregistred user!
使用InstallShield 6.22如何在程序项中设置卸载快捷方式,在IDE中如何设置?
 
要使用程序进行处理,首先声明:
// your script function prototypes
prototype CorrectUninstallString();
// your global variables
然后添加代码:
function CorrectUninstallString()
STRING szString1,szLins,svValue;
NUMBER NLinl,NValue,NSize,nType;
begin
NLinl=StrFind(UNINSTALL_STRING,"<UNINSTALL_CMD>");
if NLinl<0 then
//正常的
else
//需要纠正
StrSub(szString1,UNINSTALL_STRING,0,NLinl);
UNINSTALL_STRING=szString1+",LaunchSetup "+'"'+DISK1TARGET+'//setup.exe"';
endif;
end;
 
快捷方式添加
DisplayText=卸载程序
Target=<DISK1TARGET>/Setup.exe
Parameters=
StartIn=<DISK1TARGET>
ShortcutKey=
Run=Normal Window
IconFile=
IconIndex=
Replace=Yes
SeparateMemorySpace=No
InternetShortcut=No
Uninstall=Yes
Type=Automatic
Comments=
FileGroup0=App Executables
自己看看设置,祝你成功
 
caochen的正确
 
接受答案了.
 
后退
顶部