This code will not SetFocus to TextBox2…any ideas as to why?<?xml:namespace prefix = o ns = "urn:schemas-microsoft-comfficeffice" /><o></o>
<o></o>
<o></o>
<o></o>
Code:
[FONT=Verdana]Private Sub TextBox2_AfterUpdate()[/FONT]
[FONT=Verdana]<o:p></o:p>[/FONT]
[FONT=Verdana]If Me.TextBox2.Value < Me.TextBox3.Value Then<o:p></o:p>[/FONT]
[FONT=Verdana]Me.TextBox2.SetFocus[/FONT]
[FONT=Verdana]MsgBox "Counter Value is Less Than Previous Reading.", vbCritical[/FONT]
[FONT=Verdana]Exit Sub<o:p></o:p>[/FONT]
[FONT=Verdana]End If<o:p></o:p>[/FONT]
[FONT=Verdana]<o:p></o:p>[/FONT]
[FONT=Verdana]End Sub[/FONT]