I have one checkbox and a button. What embeds to I have to write in the
button to "check/uncheck" the checkbox?
--
Andrea James
Clarion Developer
hth,
Jeff
--
Jeff Kolker
Kolker & Kolker, Inc.
~~~~~~~~~~~~~~~~~~~~~~
je...@kolkercpa.com
www.kolkercpa.com
~~~~~~~~~~~~~~~~~~~~~~
Using C55EE and a zillion third party tools
~~~~~~~~~~~~~~~~~~~~~~
"news.softvelocity.com" <andre...@mindspring.com> wrote in message
news:3ad08e20$1...@news.softvelocity.com...
Do you have some sample code for that?
I have tried:
?Checkbox1{PROP:CHECKED} = TRUE
but it does not work.
Why dont you use a locale variable?
LOC:Checkvalue
then set the USE property for the check to LOC:CheckValue
LOC:CheckValue=1 ! or true
dispay() ! Check is on
HTH
"Andrea James" <andre...@mindspring.com> skrev i melding
news:3ad0...@news.softvelocity.com...
checkbox1 = true
display(?checkbox1)
The display command MAY not be necessary...depends on where your code is
placed.
hth,
Jeff
"Andrea James" <andre...@mindspring.com> wrote in message
news:3ad0...@news.softvelocity.com...
Check online help ( F1 ) for CHANGE
"Andrea James" <andre...@mindspring.com> wrote in message
news:3ad0...@news.softvelocity.com...
I usually use 1 and 0 for true and false, respectively.
Click on the control and press enter to display the properties and
youll see what I mean.
---
Mark Riffey
Granite Bear Development
http://www.granitebear.com
Software for professional photography
studios, cultured marble / cast polymer /
solid surface manufacturers and non-profit
organizations
CHANGE(?checkField,'Yes')
CHANGE(?checkField,'No')
CHANGE(?checkField,'On')
CHANGE(?checkField,'Off')
The Checkbox knows which is true\false -- its set in the window
properties...
"Mark Riffey" <m...@granitebear.com> wrote in message
news:VA.000013b...@granitebear.com...
That was kinda my point. She needed to check if they were set.
MyCheckBox = 1 Or MyCheckBox = 0
Display()
PLEASE, why can't I use MyCheckBox = NOT MyCheckBox !!!!!!!!!!!!
Rgds,
Ville
"Kevin B. Erskine" <KErs...@Software-By-Ragazzi.com> wrote in message
news:3ad1...@news.softvelocity.com...
--
best wishes
Eric Churton
The Simsoft Templates for plug-in on-screen keyboards and keypads
http://www.vertigo.co.za/simplesoft/
"news.softvelocity.com" <andre...@mindspring.com> wrote in message
news:3ad08e20$1...@news.softvelocity.com...