On 3/9/07, CV <[EMAIL PROTECTED]> wrote: > > Not to detract from your suggestion of a built in UserAction > discriminator(which I think might be a useful option), toggling a > control "array" of checkboxes can be readily done with code like this > in Action instead of the code above: > > dim j as integer > If CheckBox1(index).Value = true then > For j = 0 to 3 > If j <> index then > CheckBox1(j).Value = false > End > Next > End > > > Best, > > Jack >
good suggestion Jack, thanks. What threw my code off was setting checkbox(j).value = true (rather than false) which then fired new Action events. My suggestion of ..._User events still stands tho. Cheers, P. -- ------------------------------------------------------------------------------- Peter K. Stys, MD Professor of Medicine(Neurology), Senior Scientist Ottawa Health Research Institute, Div. of Neuroscience Ottawa Hospital / University of Ottawa Ontario, CANADA tel: (613)761-5444 fax: (613)761-5330 http://www.ohri.ca/profiles/stys.asp ------------------------------------------------------------------------------- _______________________________________________ Unsubscribe or switch delivery mode: <http://www.realsoftware.com/support/listmanager/> Search the archives: <http://support.realsoftware.com/listarchives/lists.html>
