+ Reply to Thread
Results 1 to 2 of 2

Highlight Value of Text Box

  1. #1
    ben
    Guest

    Highlight Value of Text Box

    I have a UserForm with four textboxes names py1 py2 py3 py4
    What I am trying to accomplish is that when a user clicks into a textbox, it
    will loop through the other three add their values and subtract it from a
    Total, and put that value into the textbox. This part I have accomplished
    with no problem.
    However when it puts that value into the textbox the user has clicked into i
    want to HIGHLIGHT the value that was entered into textbox through VBA

    ..selstart & .sellength will not select it code follows


    Private Sub py1_Enter()
    Dim t As Integer
    toy = 0
    Set ctl1 = Me.ActiveControl
    For t = 1 To 4
    Set ctll = Me.Controls("py" + Trim(Str(t)))
    If ctl1.Name <> ctll.Name Then toy = toy + Val(ctll.Text)
    Next
    With ctl1
    ..Text = Trim(Str(tow - toy))
    ..SelStart = 0
    ..SelLength = Len(.Text)
    End With
    End Sub

    the code is EXACTLY the same for each text box
    the two variables ctll & ctl1 are public in the userform.
    anyone see why maybe the userform will not highlight the text?


    --
    When you lose your mind, you free your life.

  2. #2
    Forum Expert Simon Lloyd's Avatar
    Join Date
    03-02-2004
    Location
    locked in the cage
    MS-Off Ver
    All the ones my homepage shows
    Posts
    3,161

    Try this!

    Hi i think you need to SetFocus = Textbox? or something along those lines

    Simon

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1