A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Access » Using Forms
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Command button



 
 
Thread Tools Display Modes
  #1  
Old July 6th, 2004, 07:16 PM
Lexi
external usenet poster
 
Posts: n/a
Default Command button

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
  #2  
Old July 6th, 2004, 07:37 PM
Dirk Goldgar
external usenet poster
 
Posts: n/a
Default Command button

"Lexi" wrote in message

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)


 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 07:02 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.