| View previous topic :: View next topic |
| Author |
Message |
Seffyroff Newbie

Joined: 08 Apr 2002 Posts: 15
|
Posted: Tue Apr 09, 2002 5:06 pm Post subject: Really dumb checkbox question |
|
|
Can I check the state of checkboxes with an IF @NULL(checkbox) statement, or do I have to do something else like use a click event or something to assign a value to a variable?
Currently i'm doing this:
IF @NULL(UpdatePS2ELF)
do something
ELSE
do something else
Should that work? |
|
| Back to top |
|
 |
VDSuser Contributor


Joined: 21 Mar 2002 Posts: 58 Location: Somewhere in time
|
Posted: Tue Apr 09, 2002 5:22 pm Post subject: |
|
|
Checkboxes can be checked with @dlgtext values, as in
if @dlgtext(checkbox)
do this
else
do that
end
@dlgtext(checkbox) will be TRUE if box is checked, otherwise FALSE. |
|
| Back to top |
|
 |
|