|
-
Sep 21st, 2000, 07:31 PM
#1
Thread Starter
Addicted Member
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.
-
Sep 21st, 2000, 07:43 PM
#2
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
-
Sep 22nd, 2000, 12:18 AM
#3
To make the Combobox stay?
-
Sep 22nd, 2000, 06:56 AM
#4
Thread Starter
Addicted Member
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.
-
Sep 26th, 2000, 11:40 PM
#5
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.
-
Sep 27th, 2000, 06:25 AM
#6
Thread Starter
Addicted Member
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
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|