|
-
Dec 14th, 2001, 10:26 AM
#1
Thread Starter
Member
How to show combo box at certain position on form
i create a combo box with hidden property. i like to show this combo box whenever i double click on label of the form. I have twenty labels so i like to show combo box on exactly the position of the label i double click. Any help is really appreciated
-
Dec 14th, 2001, 10:33 AM
#2
Easy one
VB Code:
Private Sub lblMyLabel_Click()
Me.cboCombo.Top = lblMyLabel.Top
Me.cboCombo.Left = lblMyLabel.Left
End Sub
-
Dec 14th, 2001, 10:36 AM
#3
Frenzied Member
And of course, .... you'll need to also say cboCombo.Visible = True
But you already knew that!
~Peter

-
Dec 14th, 2001, 12:05 PM
#4
Thread Starter
Member
Thanks You Guys, Really Appreciated
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
|