Chicagodude
Programmer
I have a Continuous Forms as sub form. It has three text box.
Text55, Text75 and lblmessage
Here what i want a do. If text75 > text55 then lblmessage is visible= true else false.
I have this code on after update event on text75.
If Me.Text75 > Me.Text55 Then
Me.lblmessage.Visible = True
Else
Me.lblmessage.Visible = False
End If
I have three records on my Continuous Forms. I enter data for first row and text75< text55 then lblmessage.visible = false. As soon as i enter value for row2 which is text75>text55 then lblmessage visible but it visible for all three record insted of only row2 becuase row 1 does not meet the critaria.
As soon as i enter value for row 3 with is like row1 the lblmessage get disappear. How can i code so it is based on that row not all rows.
Text55, Text75 and lblmessage
Here what i want a do. If text75 > text55 then lblmessage is visible= true else false.
I have this code on after update event on text75.
If Me.Text75 > Me.Text55 Then
Me.lblmessage.Visible = True
Else
Me.lblmessage.Visible = False
End If
I have three records on my Continuous Forms. I enter data for first row and text75< text55 then lblmessage.visible = false. As soon as i enter value for row2 which is text75>text55 then lblmessage visible but it visible for all three record insted of only row2 becuase row 1 does not meet the critaria.
As soon as i enter value for row 3 with is like row1 the lblmessage get disappear. How can i code so it is based on that row not all rows.