Once a record is created, grey out certain field

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there a way in code to grey out a field after the record has been created?

Thanks in advance,
John
 
hi,
not sure exactly what you mean by "onc a record has benn
created"
but
ControlName.enabled = false 'gray with no input allowed.
controlname.enabled = true 'if you disable a contrl be
sure at some point in your code to enable it again.
Regards
Frank
 
Back
Top