|
-
Nov 12th, 2003, 08:26 AM
#1
Thread Starter
Lively Member
Popup Controls
Hi Guys
Is it possible to popup/show a control eg. ComboBox at selected listitem/subitem in a listview? similar to the VB6 control's properties window.
Thanks
-
Nov 12th, 2003, 09:02 AM
#2
Lively Member
To do this, I put a listbox control on a form containing a listView control. Set the listbox visible property to False, then use this..
[vb]
Private Sub ListView1_MouseDown(Button As Integer, Shift As Integer, x As Single, y As Single)
If Button = vbRightButton Then
List1.AddItem ListView1.SelectedItem
List1.Visible = True
End If
[/vb]
HTH
Michael
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
|