Oct 7, 2002 #2 D divil Ultimate Contributor Joined Nov 17, 2002 Messages 2,746 Location England 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 I'm 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 I'm 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 D Derek Stone Exalted One Joined Nov 17, 2002 Messages 1,875 Location Rhode Island, USA ListViews don't account for carriage returns (new lines) so you're pretty much out of luck. You might want to look for an alternative to the ListView.
ListViews don't account for carriage returns (new lines) so you're 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 D divil Ultimate Contributor Joined Nov 17, 2002 Messages 2,746 Location England Probably, I wasn't aware the listview supported owner drawing though.
Oct 8, 2002 #8 D divil Ultimate Contributor Joined Nov 17, 2002 Messages 2,746 Location England 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 it's in c#... http://www.codeproject.com/cs/miscctrl/sortedlistview.asp
this is one of the examples i found, but it's in c#... http://www.codeproject.com/cs/miscctrl/sortedlistview.asp
Oct 8, 2002 #10 D divil Ultimate Contributor Joined Nov 17, 2002 Messages 2,746 Location England Thanks. I find C# reads just like VB anyway.