Jump to content


This is a ready-only archive of the InstallSite Forum. You cannot post any new content here. / Dies ist ein Archiv des InstallSite Forums. Hier können keine neuen Beiträge veröffentlicht werden.
Photo

Progress bar during uninstall


1 reply to this topic

rags33

rags33
  • Members
  • 15 posts

Posted 16 January 2002 - 18:06

When I uninstall my product. I do not get a progress bar indicating the uninstalling the files and other registry settings. I used to get this in IS 5.0. I am using IS6.22.
How do I get the progress bar during uninstallation?

rags33

rags33
  • Members
  • 15 posts

Posted 17 January 2002 - 21:33

The following code worked for me

  SetTitle( @TITLE_MAIN, 24, RGB(200,100,100) );
    SetTitle( @TITLE_CAPTIONBAR, 0, BACKGROUNDCAPTION ); // Caption bar text.
    SetColor(BACKGROUND,BK_BLUE|BK_SMOOTH);
    Enable( BACKGROUND );
    Enable( DEFWINDOWMODE);
    svResult = SdLoadString(IFX_MAINTUI_MSG);
nResult = SprintfBox(MB_YESNO,"Confirm File Deletion","%s",svResult);
if (nResult = IDNO) then
abort;
else
if(nResult = IDYES) then
SetStatusWindow(0, "");
Enable(STATUSEX);
StatusUpdate(ON, 100);