Making a invisible field permanently visible

K

karena

How do I make an invisible field permanently visible in a record after the
data has been entered
 
A

Arvin Meyer [MVP]

karena said:
How do I make an invisible field permanently visible in a record after the
data has been entered

I'm not sure how you'd enter data into an "invisible field" although you can
programmatically fill a control (like a text box). In the same code, as
you'd programmatically fill it, you'd add a line like:

Me.NameOfTextBox.Visible = True
 
L

Larry Daugherty

Add a Boolean field in the underlying table; bVisible. In code in
one of the Form's events, set the Controls (not 'field') visible
property appropriately.

HTH
 

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