Tabbing On Continuous Forms

N

nick

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
 
N

nick

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
 
Top