View Single Post
  #4  
Old March 24th, 2010, 05:02 PM posted to microsoft.public.access.forms
Microsoft Access
external usenet poster
 
Posts: 14
Default Group Controls For One Event

Thanks Maurice, that is an interesting solution. It wouldn't work here
because I am looking for an event to fire, but I think John addressed this
case. I will keep this idea in mind for the future though.

"Maurice" wrote in message
...
There are different ways to achieve that. Are the specified controls al
textboxes or.. what makes the distinction.

The 'tag' property of the control is often used for checking groups of
controls.

Example:

alle the controls that have "hide" in them should be hidden after a
certain
action.
set every tag of the specified controls to "Hide" and then the following
under the event handler
code:

dim ctl as control
for each ctl in me
if ctl.tag="hide" then
ctl.visible=false
else
'you could do something alternative here otherwise leave the else out
end if
next


hth
--
Maurice Ausum


"Microsoft Access" wrote:

I would like to be able to group a bunch of text boxes on my form so that
if
something changes in any of them I can use the onchange event for the
group
and not have to add code for all textboxes. Is this possible? Thanks.


.