What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » Listview issues

Listview issues
Author: Message:
Volv
Skinning Contest Winner
*****

Avatar

Posts: 1233
Reputation: 31
34 / Male / Flag
Joined: Oct 2004
RE: Listview issues
Columnidx should be either 0 (first column), 1 (2nd column), 2, 3 etc.

Your ListView control in your XML file should also follow a similar format;
code:
<Control xsi:type="ListViewControl" Id="lstContacts">
    <Position Top="20" Width="326" Left="12" Height="162"></Position>
    <Attributes>
        <AlwaysShowSelection>false</AlwaysShowSelection>
    </Attributes>
   
    <ReportView>
        <SortColHeader>true</SortColHeader>
        <HasCheckboxes>true</HasCheckboxes>
    </ReportView>
    <Columns>
        <Column>
            <ColumnId>colEmail</ColumnId>
            <Label>Email</Label>
            <Width>30</Width>
        </Column>
        <Column>
            <ColumnId>colName</ColumnId>
            <Label>Nickname</Label>
            <Width>71</Width>
        </Column>
       
    </Columns>
   
</Control>

In this example colEmail would be the first column (ie. columnidx = 0) and colName would be the 2nd column (ie. columnidx = 1)
07-21-2006 07:57 AM
Profile PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
Listview issues - by Mothuim on 07-21-2006 at 01:59 AM
RE: Listview issues - by Volv on 07-21-2006 at 07:57 AM


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On