Make field Visible on New Record

S

Stockwell43

Hello,

On my form I have a field called "ProjectName". What I want is to have this
field visible if it's a new record but if the record has already been added
then make it invisible.

I know this is probably very basic but brain is not functioning well today.
Any help would be most appreciated!!!!
 
S

Stockwell43

I got it. I put

Me.ProjectName.Visible = Me.NewRecord

In the forms current event.

Thanks!!
 
B

BruceM

I expect you mean there is a text box on the form. In the form's Current
event:

Me.TextBoxName.Visible = Me.NewRecord
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top