Making a invisible field permanently visible

  • Thread starter Thread starter karena
  • Start date Start date
K

karena

How do I make an invisible field permanently visible in a record after the
data has been entered
 
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
 
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
 
Back
Top