Posts Topics Forums Images
Search videos from message boards Videos Search messages from microblogs Microblogs Search messages from imdb.com Imdb Search messages from yuku.com Yuku Search messages from lefora.com (free forums) Lefora
My account: Login | Sign Up
Loading... 

Thread: Disable button in microsoft.public.access.formscoding

Started 4 weeks, 1 day ago by MN
Access2K. i have a form, when user finished enter data and click SAVE button. I want after that the button is disable. How can I do that? Thank you in advance. MN
Site: Discussions in microsoft.public.access.formscoding  Discussions in microsoft.public.access.formscoding - site profile
Forum: microsoft.public.access.formscoding  microsoft.public.access.formscoding - forum profile
Total authors: 2 authors
Total thread posts: 2 posts
Thread activity: no new posts during last week
Domain info for: microsoft.com

Other posts in this thread:

Jack Leach replied 4 weeks, 1 day ago
In the afterupdate event of the form set the Enabled property of the button to false... Private Sub Form_AfterUpdate() Me.ButtonName.Enabled = False End Sub this is one way, but then you need to reset it for each record you go to (use the Current event of the form) or when the form is Dirty... etc. ...

 

Top contributing authors

Name
Posts
MN
1
user's latest post:
Disable button in...
Published (2009-11-06 12:33:00)
  Access2K. i have a form, when user finished enter data and click SAVE button. I want after that the button is disable. How can I do that? Thank you in advance. MN  
Jack Leach
1
user's latest post:
Disable button in...
Published (2009-11-06 16:51:00)
  In the afterupdate event of the form set the Enabled property of the button to false... Private Sub Form_AfterUpdate() Me.ButtonName.Enabled = False End Sub this is one way, but then you need to reset it for each record you go to (use the Current event of the form) or when the form is Dirty... etc. Setting the enabled property is easy, but finding all the required places to put the line of code to make it work as you like can be a...

Related threads on "Discussions in microsoft.public.access.formscoding":

Related threads on other sites:

Thread profile page for "Disable button in microsoft.public.access.formscoding" on http://www.microsoft.com/communities/newsgroups.... This report page is a snippet summary view from a single thread "Disable button in microsoft.public.access.formscoding", located on the Message Board at http://www.microsoft.com/communities/newsgroups.... This thread profile page shows the thread statistics for: Total Authors, Total Thread Posts, and Thread Activity