Valhalla Legends Archive

Programming => General Programming => Topic started by: Vernors on January 28, 2005, 10:17 PM

Title: ListView Order?
Post by: Vernors on January 28, 2005, 10:17 PM
I was wondering how I would make it so ops are the top and it went as in the order as they joined the channel, I have tried everything and could not get it to work. Is there anything special I have to do to make my listview order them in this order?
Title: Re: ListView Order?
Post by: UserLoser. on January 28, 2005, 11:51 PM
Simply set the index of the item to the position you want (zero-based) in your LVITEM struct with the iItem member, then use LVM_INSERTITEM to insert the item into the listview like you normally do
Title: Re: ListView Order?
Post by: tA-Kane on January 29, 2005, 02:24 AM
First, check if they are an operator (using bitwise functions on their flags). If they are, then insert them in the highest visible position (usually ends up being position zero).
Title: Re: ListView Order?
Post by: Vernors on January 29, 2005, 03:45 AM
Thank you both, I now have it working I love this forum I always get all my problems solved. If I run into any others I will post them here, that is if you guys want to hear them. Lol
Title: Re: ListView Order?
Post by: Joe[x86] on January 29, 2005, 02:45 PM
By the way, by bitwise functions, he means..
If Flags and 2 Then
replacing 2 with the apropriate value.