Here is part of the script for Deinstall:
////////////////////////////////////////////////////////////////////////////
///
//
//
// Function: ProcessBeforeDataMove //
//
//
// Purpose: This function performs any necessary operations prior to the
//
// actual data move operation. //
//
//
////////////////////////////////////////////////////////////////////////////
///
function ProcessBeforeDataMove()
STRING svLogFile;
NUMBER nResult;
begin
InstallationInfo( @COMPANY_NAME, @PRODUCT_NAME, @PRODUCT_VERSION,
@PRODUCT_KEY );
svLogFile = UNINST_LOGFILE_NAME;
nResult = DeinstallStart( svDir, svLogFile, @UNINST_KEY, 0 );
if (nResult < 0) then
MessageBox( @ERROR_UNINSTSETUP, WARNING );
endif;
end;
Thanks for the help in advance.
Ting
To resolve this, delete any occurances of the uninst.log for your product
(don't delete the uninst.log for other products..). Then try again.
--
Sincerely,
Jacob L.
Developer Support Engineer
InstallShield Technical Support
www.installshield.com
"tslim" <tsli...@yahoo.com> wrote in message
news:395bb...@208.30.171.38...