I have a set of two radio buttons in a panel control (Male & Female), when a
new person object is loaded into the form I need to set the gender
appropriately. However, some persons' gender is not known, say for "Brown,
J" and I am trying unsuccessfully to set both radio buttons to reflect this.
IF p.gender = "M" THEN
rbMale.Value = TRUE
rbFemale.Value = FALSE
ELSE IF p.gender = "F" THEN
rbMale.Value = FALSE
rbFemale.Value = TRUE 'OK So far, but...
ELSE
rbMale.Value = FALSE
rbFemale.Value = FALSE
ENDIF
In the unknowns case, the radiobuttons are always left in the state they were
in on the previous object. So, if I go from Brown, Hillary (F) to Brown, J
the value is left as for Hillary. But if I go from Brown, Kevin (M) to
Brown, J its left as for Kevin.
I've also tried setting both rb Values to NULL but this gives the same result.
Any clues?
tia
Bruce
------------------------------------------------------------------------------
Stay on top of everything new and different, both inside and
around Java (TM) technology - register by April 22, and save
$200 on the JavaOne (SM) conference, June 2-5, 2009, San Francisco.
300 plus technical and hands-on sessions. Register today.
Use priority code J9JMT32. http://p.sf.net/sfu/p
_______________________________________________
Gambas-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/gambas-user