continous form

  • Thread starter Thread starter R.Kisoenpersad
  • Start date Start date
Hi,
can you disable one row of a continous form?

Please advise how

Assuming you have a condition that determines whether the row/record
is enabled; use the form's Current event.

Me.txtBox1.Enabled = Not [the condition]
Me.txtBox2.Enabled = Not [the condition]
Me.txtBox3.Enabled = Not [the condition]
... and so on ...

- Jim
 
Back
Top