Make field Visible on New Record

  • Thread starter Thread starter Stockwell43
  • Start date Start date
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!!!!
 
I got it. I put

Me.ProjectName.Visible = Me.NewRecord

In the forms current event.

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

Me.TextBoxName.Visible = Me.NewRecord
 
Back
Top