Hi, how can I update option group from code, as if someone clicked on radio button? Thanx alek_mil
A alekm Aug 8, 2005 #1 Hi, how can I update option group from code, as if someone clicked on radio button? Thanx alek_mil
N Nikos Yannacopoulos Aug 8, 2005 #2 Assuming (a) your option group is named MyOG, (b) it is set to return values of 1,2,3 for the three available options, and (c) it is on form MyForm, the code so "select", say, the second option, would be: Forms![MyForm]![MyOG] = 2 HTH, Nikos
Assuming (a) your option group is named MyOG, (b) it is set to return values of 1,2,3 for the three available options, and (c) it is on form MyForm, the code so "select", say, the second option, would be: Forms![MyForm]![MyOG] = 2 HTH, Nikos