sanders720
Programmer
Runtime error 2110 - Microsoft Access can't move the focus to the control txtTotal.
Runtime error 2185 - You can't reference a property or method for a control unless the control has the focus.
What generally causes these errors, which are coming from the lines below.
Private Sub Mach_Hours_LostFocus()
' txtTotal.SetFocus
' txtTotal.Text = Val(
Runtime error 2185 - You can't reference a property or method for a control unless the control has the focus.
What generally causes these errors, which are coming from the lines below.
Private Sub Mach_Hours_LostFocus()
' txtTotal.SetFocus
' txtTotal.Text = Val(
Hours said:.Text) + Val([Engineer Hours].Text) + Val([Assy Hours].Text) + Val([Mach Hours].Text * QTY)
End Sub
Thanks in advance for the help...