Tabbing On Continuous Forms

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

I have a continuous form with "live data" representing line items in a
quote. However, when people change a value and then try to Tab to the next
field they are taken to the top of the form.

Any suggestions
 
I tried -
Private Sub Quantity_KeyDown(KeyCode As Integer, Shift As Integer)
If KeyCode = 9 Then
Cost_Per_Unit.SetFocus
End If
End Sub

But an error came up saying I couldn't set the Focus to Cost_Per_Unit
 
Back
Top