Results 1 to 3 of 3

Thread: Getting the Insert point to the right side...

  1. #1

    Thread Starter
    Junior Member
    Join Date
    Oct 1999
    Posts
    20

    Post

    How do I get the INSERTION POINT the the right side of a text?

    Also.. How do I add strings into a combo box thats style=drop down?

    Do I need Microsoft Access to do this?

  2. #2
    Junior Member
    Join Date
    Jan 1999
    Location
    Pierre, SD USA
    Posts
    23

    Post

    Question #1:

    Private Sub Text1_GotFocus()
    Text1.SelStart = Text1.SelLength
    End Sub

    As for Question #2, I am at work (where I have VBA, which treats combo boxes and list boxes differently than VB) but I think you can use the additem method:

    Combo1.AddItem "My New String"


  3. #3

    Thread Starter
    Junior Member
    Join Date
    Oct 1999
    Posts
    20

    Post

    Yes you can use additem, but I ment was to save the combo, do I need to get Access to save the combo's data?

Posting Permissions

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



Click Here to Expand Forum to Full Width