|
-
Feb 3rd, 2000, 06:00 AM
#1
Thread Starter
Addicted Member
I can't find any way to find out which column in a listview control was clicked. I must be missing something. Any ideas?
-
Feb 3rd, 2000, 07:27 AM
#2
ListView has ColumnClick event, which has ColumnHeader object which is the column you clicked.
Code:
Private Sub ListView1_ColumnClick(ByVal ColumnHeader As ColumnHeader)
MsgBox "You clicked on cloumn " & ColumnHeader.Index
End Sub
------------------
Serge
Senior Programmer Analyst
[email protected]
[email protected]
ICQ#: 51055819
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
|