Oct 7, 2002 #2 Divil Well-known member Joined Nov 17, 2002 Messages 2,748 Can you describe what you mean?
Oct 7, 2002 #3 B bmaxwell Guest normally when you use the headers they are horizontal like this: Header 1 | Header 2 | Header 3 Im trying to make a gradebook application and I need them vertical like this: H | H | H e | e | e a | a | a d | d | d e | e | e r | r | r | | 1 | 2 | 3
normally when you use the headers they are horizontal like this: Header 1 | Header 2 | Header 3 Im trying to make a gradebook application and I need them vertical like this: H | H | H e | e | e a | a | a d | d | d e | e | e r | r | r | | 1 | 2 | 3
Oct 7, 2002 #4 Derek Stone Exalted One Joined Nov 17, 2002 Messages 1,878 Location Rhode Island User Rank *Expert* ListViews dont account for carriage returns (new lines) so youre pretty much out of luck. You might want to look for an alternative to the ListView.
ListViews dont account for carriage returns (new lines) so youre pretty much out of luck. You might want to look for an alternative to the ListView.
Oct 7, 2002 #5 B bmaxwell Guest what if I was to do an owner drawn listview...could I maybe put the headers vertical then?
Oct 7, 2002 #6 Divil Well-known member Joined Nov 17, 2002 Messages 2,748 Probably, I wasnt aware the listview supported owner drawing though.
Oct 8, 2002 #8 Divil Well-known member Joined Nov 17, 2002 Messages 2,748 I knew you could owner draw listboxes in .NET, but not listviews. Got any example urls?
Oct 8, 2002 #9 B bmaxwell Guest this is one of the examples i found, but its in c#... http://www.codeproject.com/cs/miscctrl/sortedlistview.asp
this is one of the examples i found, but its in c#... http://www.codeproject.com/cs/miscctrl/sortedlistview.asp
Oct 8, 2002 #10 Divil Well-known member Joined Nov 17, 2002 Messages 2,748 Thanks. I find C# reads just like VB anyway.