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 Statement


2 replies to this topic

woter324

woter324
  • Full Members
  • 18 posts

Posted 20 December 2005 - 17:50

Hi,

I want to perform a custom action on Next> unless a properties value is NULL. i.e. if there is nothing in a particular text box, then do not perform the custom action.

The property affecting the action is called CS_INSTANCE therefore would the following conditional statement work?:

CS_INSTANCE>NULL

i.e. if CS_INSTANCE is greater than nothing perform...

Thanks

Woter

ezrali

ezrali
  • Members
  • 12 posts

Posted 21 December 2005 - 08:15

Try != (Not equal) instead of >.
Another option is Not ( YourProperty = NULL).

Zweitze

Zweitze
  • Full Members
  • 522 posts

Posted 21 December 2005 - 09:04

Use:

CS_INSTANCE

This condition evaluates to True when CS_INSTANCE has a non-empty value, and False when it is empty or does not exist.