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

Conditional CA


3 replies to this topic

Madhu

Madhu
  • Members
  • 13 posts

Posted 12 April 2001 - 15:10

Condition of my custom Action is based on the what  I select in the Setup Type Dialog. i.e.,  Custom  or Complete.  In other words I want my CA to run if I select "Custom"  radio Button in the Setup Type Dialog box.  Can anybody please throw some light.  
I have already tried
     _IsSetupTypeMin = "Custom"
but didn't work.


Stefan Krueger

Stefan Krueger

    InstallSite.org

  • Administrators
  • 13,269 posts

Posted 13 April 2001 - 07:00

_IsSetupTypeMin is a private property (includes lower case characters). This means that its value is not available in the execute sequence. You must use a public property, e.g. SETUP_TYPE.

SteveP

SteveP
  • Members
  • 126 posts

Posted 17 April 2001 - 23:08

Have you tried attaching the Custom Action to the Custom PushButton so that the button launches the CA directly?  I launch CA's from pushbuttons in several instances by including the DoAction control event in the ControlEvent table.