R R.Kisoenpersad Jul 20, 2004 #1 Hi, can you disable one row of a continous form? Please advise how Kisoen
J Jim Allensworth Jul 20, 2004 #2 Hi, can you disable one row of a continous form? Please advise how Click to expand... 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
Hi, can you disable one row of a continous form? Please advise how Click to expand... 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