 |
|
 |
Do somebody has tryed to use this control in Icon mode?
I did and the drawing doesn't work properly:
- overlapped items, items from upper group appear over the group below;
- unproperly wrapped item rows (sometimes 3 items per row, sometimes 5, it happens that items appear behind the right border of the control but there is no horiz.croll bar...)
|
|
|
|
 |
|
 |
There's nothing in the article except for a screenshot. A couple of pages on how to use the sample code, and maybe some highlights, would go a long way towards making a more useful article. Some folks do not want to wade through a bunch of source code files just to see how a control can be used.
|
|
|
|
 |
|
 |
hi,
I'm having problem with my xplistview the groupings doesn't show or the groupings doesn't work... Can anyone help me on this? BY the way I'm using vb.net 2003....
Thanks,
|
|
|
|
 |
|
 |
Do you have the theme service turned on in your 2003 environment?
|
|
|
|
 |
|
 |
I've made the correction to XPListViewItemCollections as noted in previous posts in this board.
I'm trying to iterate thru the items in the listview, but it continues to error out.
My code:
For i As Integer = 0 To .lvTags.Items.Count - 1
Debug.WriteLine(.lvTags.Items.Item(i).Checked)
Next
Michael
|
|
|
|
 |
|
 |
When i tried to build the test-project.. i got an NullReferenceException
I fixed that with adding this code -> view = new XPListview.XPListView();
But when i run the project i don't get any error's, but i simply don't see the listview.
Does anybody got an idea what the problem can be?
Thanks,
Aloys
|
|
|
|
 |
|
|
 |
|
 |
try to add the .manifest file. And/Or call the Application.EnableVisualStyles()
|
|
|
|
 |
|
 |
Is there a possibility to add the grouping feature in Win 2000
mfg
alx
alx
|
|
|
|
 |
|
 |
Not that I'm aware of - it's based on the version of the common controls that ship with the OS.
|
|
|
|
 |
|
 |
Excellent article!
I haven't found any license terms in your source code. Could you please elaborate on the allowed use of your source code?
Thanks.
iamdaiyuan
|
|
|
|
 |
|
 |
Use it however you want. It's free, open source, whatever... no licensing required as it's a community contribution.
|
|
|
|
 |
|
 |
Cool,thank you very much.
|
|
|
|
 |
|
 |
thanks for your cool job,
and i like your coding style.
|
|
|
|
 |
|
 |
First would like to say this is a great article and I knows nothing about API and learn new feature of ListView on VS2005, great work.
I found a problem around Items Collection, could be Group too but not yet work on it. The code works fine but this is VS2005 related (I think), the error is Cross-thread operation not valid. I couldn't see it at first as it does not produce any exception visually but the code is exit un-mutually, I was able to find out until I used Quick View on the debug in VS2005.
Try add below code to the LoadCSV method and after lists are added;
XPListview.XPListViewItemCollection myCollection = view.Items;
itm = myCollection[1];
Then debug on this code, you get the error.
Related topic I found on MSDN:
http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=414498&SiteId=1[^]
I solved part of the XPListViewItemCollection with my work colleague, by using Invoking & delegate but if author can have a look and amend the codes so no more error would be great.
Cheers.
|
|
|
|
 |
|
 |
I've modified the EmptyAutoGroupText.Get property in order to get a variable message when the cell is empty.
public string EmptyAutoGroupText{
get
{
string sTitle ="";
string sRet;
if(_autoGroupCol != null)
sTitle = _autoGroupCol.Text ;
sRet = _emptyAutoGroupText.Replace ("%columntitle%", sTitle );
return sRet;
//return _emptyAutoGroupText;
}
And it's necessary to change all the references to _emptyAutoGroupText by EmptyAutoGroupTextin the method AutoGroupByColumn
José M. Muélledes
-- modified at 20:04 Thursday 23rd March, 2006
|
|
|
|
 |
|
 |
Hello.
I am wondering if its possible to change the color of the collumn headers from "Control" color to some other color.
Thanks a lot.
Vadim.
|
|
|
|
 |
|
 |
Use the WndProc method and to do owner-drawn routines.
|
|
|
|
 |
|
 |
Hello!
Thank you for your great Control.
But, When I use it in my UserControl, and many times load it in my winform,
I Found all event do not execute after a MessageBox Show, but the first UC is fine.
If I change the XPListView to the ListView, there is no problem with the system.
I use Chinese Windows XP System, and I found there is some difference of UNICODE in the COMMCTRL.H.
Why?
bys_home
|
|
|
|
 |
|
 |
First i really want to thank you on this wonderful control.
I am trying to get the idex of the selected item when view_SelectedIndexChanged is fired there's no SelectedIndex???
Thanks a lot for your help
|
|
|
|
 |
|
 |
Please ignor my question.Sorry for this post i got mix up between listview and listbox
|
|
|
|
 |
|
|
 |
|
|
 |
|
 |
i cannot get selected sub item?
if (view.SelectedIndices.Count>0)
{
int valor = view.SelectedIndices[0];
XPListview.XPListViewItem s = view.Items[valor];
string[] v1 = {s.SubItems[1].Text,s.SubItems[2].Text, s.SubItems[3].Text};
}
this not work!
|
|
|
|
 |
|
 |
when groups are enabled, sorting items does not have any visual effect. The "sort order" within a group seems to be the order that items were added. The recommended index for InsertItem is also ignored.
has anybody managed to do proper sorting _within_ a group?
thanks
nikos
|
|
|
|
 |