Programming
InstallSheid Uninstall Shortcut 만들기
좋은날
2009. 8. 11. 18:26
function OnMoving()
string szProgramFolder, szAppPath;
begin
szProgramFolder= FOLDER_PROGRAMS ^ IFX_COMPANY_NAME ^IFX_PRODUCT_NAME;
if (!MAINTENANCE) then
szAppPath = UNINSTALL_STRING+" -removeonly ";
AddFolderIcon( szProgramFolder, IFX_PRODUCT_NAME+" 제거", szAppPath, "", TARGETDIR ^ "\\Uninstall.ico", 0, "", REPLACE);
endif;
end;
string szProgramFolder, szAppPath;
begin
szProgramFolder= FOLDER_PROGRAMS ^ IFX_COMPANY_NAME ^IFX_PRODUCT_NAME;
if (!MAINTENANCE) then
szAppPath = UNINSTALL_STRING+" -removeonly ";
AddFolderIcon( szProgramFolder, IFX_PRODUCT_NAME+" 제거", szAppPath, "", TARGETDIR ^ "\\Uninstall.ico", 0, "", REPLACE);
endif;
end;