Results 1 to 6 of 6

Thread: the mouse

  1. #1

    Thread Starter
    Addicted Member
    Join Date
    Jan 1999
    Posts
    204
    How do i get where the mouse is in the text box like the x and y so i can get a combo box apper to it like wher the mouse is in the text box this is what i have and its not working

    If Text1.Text = "<" Then
    Combo1.Visible = True
    combo1.top = text1.text = seltext
    End If

    some one help me

    WHat would we do with out Microsoft.
    A lot more.

  2. #2
    Guest
    Try this:

    Code:
    Private Sub Text1_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
    Debug.Print X & ", " & Y
    Combo1.Move X + 800, Y + 800
    End Sub

  3. #3
    Guest
    To make the Combobox stay?

  4. #4

    Thread Starter
    Addicted Member
    Join Date
    Jan 1999
    Posts
    204
    Like if you put a < in a text boz i want it to appeear when they put that and stay intill they click it.
    WHat would we do with out Microsoft.
    A lot more.

  5. #5
    Guest
    Apologies, BoB, but I still don't understand what you mean.

    Do you mean whenever someone types ">" in a textbox the combobox appears? Anything else, or anything?

    Please explain a little more clearly.

  6. #6

    Thread Starter
    Addicted Member
    Join Date
    Jan 1999
    Posts
    204
    ok you know how in some html editors when you go like this < a combobox aper that what i want somthing like that . i can do the rest thast is easy . please help me
    WHat would we do with out Microsoft.
    A lot more.

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