blah blah blah is here! blah blah » Close

0
votes
1 answers

ListView - resizing height - no scroll bar.

I have a three ListView controls in FlowLayoutPanel. The number of items in each ListView is changing. I don`t want have scroll bar in ListView when all items can not be display on the screen, but I want have scroll bar in FlowLayoutPa ...

0
votes
1 answers

TypeConverter - GetStandardValues

Can method GetStandardValues return objects collection of complex type? I created this example. My problems are: 1. I can`t see the names o items in list box (but list box is not empt, only the names are empty). 2. When I want select it ...

0
votes
1 answers

PropertyGrid - list box in property value.

How can I get to know the user pressed the button and text(value) in property grid for the specified property was changed? Is there any event? I want to create filtered list box for this property. When user will change the text(value) fo ...

0
votes
1 answers

PropertyGrid - ListBox/ComboBox with auto filter.

How to create ListBox or ComboBox in PropertyGrid with auto filter? When user change value in PropertyGrid (add or delete only one char) the items ListBox or ComboBox shuld be automaticly filtered (the ListBox or ComboBox should be also a ...

0
votes
1 answers

How can I automatically let know DataGridView that some DataTable in DataSet was change in other thread(not in GUI thread)?

How can I automatically let know DataGridView that some DataTable in DataSet was change in other thread(not in GUI thread)? I am going also use DataView class so that class should by also automatically refresh. I want create my own DataTa ...

0
votes
1 answers

How to create progress for DataSet.ReadXml(...)?

Whan my application startup I fill data set by the method ReadXml. I want create a progress bar to show how many data has already fetched to data set but I don`t know how. The possible paramteter ReadXml are: TextReader, XmlReader, string ...

0
votes
1 answers

Problem with DataGridViewComboBoxColumn - DropDown list is black, I don`t know why.

I have a DataGridView with only two columns: first DataGridViewComboBoxColumn and second DataGridViewTextBoxColumn. Depending on the value which is selected in DataGridViewComboBoxColumn I create new cell (I don`t create new row) in the s ...

0
votes
1 answers

How to change column type in DataGridView?

I have DataGridView with only two columns: 'Type', 'Value' (user can edit both column in DataGridView) Column 'Type' is always DataGridViewComboBoxColumn. Column 'Value' depends from value in column 'Type' - sometimes it should be DataGri ...

0
votes
1 answers

Collections - sort: IComparer

Why does order change when I sort elements by property that is the same in the every element? This is my example: public class MyClass { private int _id; public int Id { get { return _id; } ...

Feedback