|
-
Oct 12th, 2000, 03:58 PM
#1
Thread Starter
Junior Member
How do I highlight an item in listview so that the highlight covers the entire row (across all columns)? I have a ListView that has two columns consisting of a filename in column one and the filedate in column two. Selecting an item via:
lstMyList.ListItems(1).Selected = True
only highlights the filename in the first column
-
Oct 12th, 2000, 04:14 PM
#2
transcendental analytic
listview1.FullRowSelect =True
Use  
writing software in C++ is like driving rivets into steel beam with a toothpick.
writing haskell makes your life easier:
reverse (p (6*9)) where p x|x==0=""|True=chr (48+z): p y where (y,z)=divMod x 13
To throw away OOP for low level languages is myopia, to keep OOP is hyperopia. To throw away OOP for a high level language is insight.
-
Oct 13th, 2000, 11:29 AM
#3
Addicted Member
Kedaman,
Where did you find fullrowselect? I've been using the sendmessagelong API to do it. I can't find anything on on a fullrowselect method.
-
Oct 13th, 2000, 11:59 AM
#4
transcendental analytic
YOu need to have MS common controls 6.0 not 5.0 or earlier.
If you want i can send you the file
Use  
writing software in C++ is like driving rivets into steel beam with a toothpick.
writing haskell makes your life easier:
reverse (p (6*9)) where p x|x==0=""|True=chr (48+z): p y where (y,z)=divMod x 13
To throw away OOP for low level languages is myopia, to keep OOP is hyperopia. To throw away OOP for a high level language is insight.
-
Oct 13th, 2000, 12:10 PM
#5
Addicted Member
Wow! Learned something new again. Thanks.
-
Oct 13th, 2000, 03:22 PM
#6
Thread Starter
Junior Member
Thanks
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
|