Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Clicks to Navigate

Status
Not open for further replies.

dbero

Technical User
Mar 31, 2005
109
US
I have a bound form with the record navigation (move next/back/add new) enabled.
when 2 of the fields have focus, it requires two clicks of the navigation to move. when the focus is anywhere else, it takes one click to navigate. nothing unique in those 2 fields by purpose.

Any thoughts on this?

thank you
 
Same type of control ?
No peculiar event procedure (like, say, LostFocus) ?

Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886
 
I made a mistake. I do have a lost focus.Sorry. Any way around the 2 clicks still?


Private Sub TxtLname_LostFocus()
Dim Lname As String
If IsNull(Me.TxtLname) Then
Exit Sub
Else
Lname = TxtLname.Value
Lname = StrConv(TxtLname.Value, vbProperCase)
TxtLname.Value = Lname
End If
End Sub
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top