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 » General Discussion
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Visible propoerty



 
 
Thread Tools Display Modes
  #1  
Old April 7th, 2009, 09:23 AM posted to microsoft.public.access
Matthew G[_2_]
external usenet poster
 
Posts: 3
Default Visible propoerty

Hi,

I am trying to build a database for work that will track the progress of
orders. I want to be able to make fields on my form visible or invisisble
based on the value I put in another field. I have tried searching the help
file but can't find what I need. Can anyone help please?

Thanks
  #2  
Old April 7th, 2009, 09:33 AM posted to microsoft.public.access
Brendan Reynolds
external usenet poster
 
Posts: 1,241
Default Visible propoerty


"Matthew G" wrote in message
...
Hi,

I am trying to build a database for work that will track the progress of
orders. I want to be able to make fields on my form visible or invisisble
based on the value I put in another field. I have tried searching the
help
file but can't find what I need. Can anyone help please?

Thanks


Here's an example that will hide a text box named "txtTwo" if the value
entered in another text box named "txtOne" is greater than 10.

If Me.txtOne 10 Then
Me.txtTwo.Visible = False
Else
Me.txtTwo.Visible = True
End If

You'd put this code in the AfterUpdate event procedure of the text box named
"txtOne", so that it fires each time the value in that text box changes, and
also in the Current event procedure of the form, so that it fires when the
user moves from one record to another.

--
Brendan Reynolds

 




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 08:07 PM.


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