Re: Command button
From: Dirk Goldgar (dg_at_NOdataSPAMgnostics.com)
Date: 07/06/04
- Next message: Rick B: "Re: Help Please!"
- Previous message: Steve Schapel: "Re: Setting .DefaultValue causes Restart"
- In reply to: Lexi: "Command button"
- Messages sorted by: [ date ] [ thread ]
Date: Tue, 6 Jul 2004 14:37:53 -0400
"Lexi" <anonymous@discussions.microsoft.com> wrote in message
news:2818101c46385$65108c40$a301280a@phx.gbl
> I have a command button in my form. Is there any way to
> restrict users to only clicking this once in any form
> instance? e.g. it will not let them click it again if
> they have already clicked it once and had it perform its
> action.
>
> Lexi
As part of its Click event procedure, put code like this:
Me!SomeOtherControl.SetFocus
Me!YourCommandButton.Enabled = False
where "SomeOtherControl" is the name of some other control on the form
that is capable of receiving the focus, and "YourCommandButton" is the
name of the command button you want to disable.
-- Dirk Goldgar, MS Access MVP www.datagnostics.com (please reply to the newsgroup)
- Next message: Rick B: "Re: Help Please!"
- Previous message: Steve Schapel: "Re: Setting .DefaultValue causes Restart"
- In reply to: Lexi: "Command button"
- Messages sorted by: [ date ] [ thread ]