Re: lopping through controls in a group

2011-04-24 Thread Todd Geist
Thanks everyone, I had tried several variations on "the count of controls" but it never "the number" I knew it had to be easy. Thanks Todd On Sun, Apr 24, 2011 at 11:02 AM, John Dixon wrote: > > Hi Todd... > > put the number of controls of group X into whatever > > repeat with count = 1 to

Re: lopping through controls in a group

2011-04-24 Thread Pete
repeat with count=1 to the number of controls in group --do stuff with control count of group end repeat Might be more efficient o put the count of controls in the group into a variable then reference the variable in the repeat statement Pete Molly's Revenge

Re: lopping through controls in a group

2011-04-24 Thread Jim Ault
On Apr 24, 2011, at 10:51 AM, Todd Geist wrote: I am looking for a way to loop through controls in a group. This seems like this should be easy to do but I can't find anything in the docs. Can somebody point me at somer examples or perhaps post a snippet of code? Do a Google for "the

RE: lopping through controls in a group

2011-04-24 Thread John Dixon
Hi Todd... put the number of controls of group X into whatever repeat with count = 1 to the number of controls of group X do whatever end repeat Be well > From: t...@geistinteractive.com > Hello, > > I am looking for a way to loop through controls in a group. This seems like > this shou