This website uses cookies. By clicking Accept, you consent to the use of cookies. Click Here to learn more about how we use cookies.
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
- Revenera Community
- :
- InstallShield
- :
- InstallShield Forum
- :
- Updater doesn’t work after cancel at the first run.
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Dec 19, 2011
07:28 PM
Updater doesn’t work after cancel at the first run.
My updater does not work when I operate it as follows.
(Actually, the words are Japanese.)
1) Execute my update.exe.
The welcome page appears.
2) Click the cancel button.
The message box that says “Do you cancel setup?” appears.
3) Click the Yes button.
The finish page appears.
4) Click the finish button.
5) Execute my update.exe again.
6) Click the next button on the welcome page.
The progress bar appears.
And the finish page that says “xxx was updated to version yyy” appears.
The problem is that the files are not updated after 6).
If I do not cancel update at 2) , the files are update.
I made the installShield project with the project assistant.
After that, I tried the following edition.
function OnMoveData()
………………..
// I added the following one line.
FeatureStandardSetupTypeSet( MEDIA, COMPLETE );
nResult = FeatureTransferData( MEDIA );
………………..
end;
The updater works correctly. But the uninstall does not work.
Could you tell me how to fix this problem?
(Actually, the words are Japanese.)
1) Execute my update.exe.
The welcome page appears.
2) Click the cancel button.
The message box that says “Do you cancel setup?” appears.
3) Click the Yes button.
The finish page appears.
4) Click the finish button.
5) Execute my update.exe again.
6) Click the next button on the welcome page.
The progress bar appears.
And the finish page that says “xxx was updated to version yyy” appears.
The problem is that the files are not updated after 6).
If I do not cancel update at 2) , the files are update.
I made the installShield project with the project assistant.
After that, I tried the following edition.
function OnMoveData()
………………..
// I added the following one line.
FeatureStandardSetupTypeSet( MEDIA, COMPLETE );
nResult = FeatureTransferData( MEDIA );
………………..
end;
The updater works correctly. But the uninstall does not work.
Could you tell me how to fix this problem?
(1) Reply
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Jan 05, 2012
06:15 PM
As as follows:
function OnUpdateUIBefore()
......................
begin
......................
Dlg_SdFeatureTree:
// add the following line.
FeatureSelectItem( MEDIA, "DefaultFeature", TRUE );
Dlg_ObjDialogs:
......................
function OnUpdateUIBefore()
......................
begin
......................
Dlg_SdFeatureTree:
// add the following line.
FeatureSelectItem( MEDIA, "DefaultFeature", TRUE );
Dlg_ObjDialogs:
......................
