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

Displaying message with SdExceptions()


1 reply to this topic

guy

guy
  • Members
  • 19 posts

Posted 21 July 2002 - 13:07

Hi all

When displaying any message to the user using SdException() function, there is a checkbox: "Don't display this message again".
If the user selected this option, whenever the SdExceptions function is called but, InstallShield does not display the dialog and return the same code the user choosed when he selected the checkbox.

Is there any way to know if the user selected this option or not?

thanks

Guy
Guy

guy

guy
  • Members
  • 19 posts

Posted 22 July 2002 - 07:33

During the last day I found out by myself how to get this information:
There are some global variables which indicate if the user selected the checkbox when an exception dialog is displayed using SdExceptions():
bIFXRONoToAll - Indicate if the user choosed 'No' for all files in Read-Only exception.
bIFXROYesToAll - Indicate if the user choosed 'Yes' for all files in Read-Only exception.
bIFXLFYesToAll - Indicate if the user choosed 'Ignore' for all files in Locked files exception.
bIFXLFOnRebootToAll - Indicate if the user choosed 'Reboot' for all files in Locked files exception.
bIFXLFNoToAll - Indicate if the user choosed 'No' for all files in Locked files exception (Although this option is not allowed).

guy
Guy