I have checkboxes that open up lists of choices that can be multi-highlighted.
I need to create a string for each skill (many of them).
Here is what I have so far:
if the hilite of btn "ckArtsCrafts" then
put the hilite of btn "listAandC" into AandC
answer AandC
end if
I know it's not right. How would I write the line:
put the hilite of btn "listAandC" into AandC
to make it correct. Again, it is a multi-select list, so how would I write all the highlighted choices to one string?
Thank you.
Mike
SOLVED - Writing the selections of a list to the database
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
Re: SOLVED - Writing the selections of a list to the database
Take a look in the dictionary at the hilitedButtonName and the hilitedButton. Those will give you the name or number of the radio button that has the current hilite. It only works if your radio buttons are grouped and have their readioBehavior set to true.
Jacqueline Landman Gay | jacque at hyperactivesw dot com
HyperActive Software | http://www.hyperactivesw.com
HyperActive Software | http://www.hyperactivesw.com
Re: SOLVED - Writing the selections of a list to the database
Thank you. I had already solved it on my own, but your explanation should help others.jacque wrote:Take a look in the dictionary at the hilitedButtonName and the hilitedButton. Those will give you the name or number of the radio button that has the current hilite. It only works if your radio buttons are grouped and have their readioBehavior set to true.
Mike