Results 1 to 3 of 3
  1. #1
    white_flag is offline Novice
    Windows XP Access 2003
    Join Date
    Jul 2011
    Posts
    26

    setfocus on an textbox

    hello I have an textbox "nume" and I like to be focuse, the cursour to stay there till something will fill the textbox:

    I put this code but it is not working:

    Code:
    Private Sub nume_AfterUpdate()
        If IsNull(Len(Me.nume)) Then
            Me!nume.SetFocus 'this part it is not working
        Else
            Me.Dirty = False
            DoEvents
            Me!List36.RowSource = Me!List36.RowSource
     
            ReadOnly_Click
            Me.List36.Selected(Me.List36.ListCount - 1) = True
            Me![nume] = Me![nume]
        End If
    End Sub


  2. #2
    white_flag is offline Novice
    Windows XP Access 2003
    Join Date
    Jul 2011
    Posts
    26
    I mean how can it focus, an object if you are already in that object[nume] ?

  3. #3
    white_flag is offline Novice
    Windows XP Access 2003
    Join Date
    Jul 2011
    Posts
    26
    I putted like this in beforeUpdate events

    Code:
    Private Sub nume_BeforeUpdate(Cancel As Integer)
        If IsNull(Len(Me.nume)) Then Cancel = True
       
    End Sub

Please reply to this thread with any new information or opinions.

Similar Threads

  1. SetFocus causes screen flicker
    By Deutz in forum Forms
    Replies: 1
    Last Post: 08-03-2011, 08:54 PM
  2. SetFocus problem
    By JvdP in forum Forms
    Replies: 0
    Last Post: 03-16-2011, 08:55 AM
  3. SetFocus/Require Entry
    By mbake085 in forum Programming
    Replies: 5
    Last Post: 08-19-2010, 07:32 AM
  4. SetFocus Problem
    By ColPat in forum Programming
    Replies: 2
    Last Post: 06-21-2010, 04:43 AM
  5. SetFocus Issue
    By Sinjin in forum Access
    Replies: 0
    Last Post: 02-14-2008, 07:31 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Other Forums: Microsoft Office Forums