No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
5 Posted Topics
this may help you Invocation of Row.Update() method initiates verification of all the above conditions for a single row among ordered rows in a grid. This process is much more efficient than working with unsorted data, especially during sorting. Invocation of Row.Update() in the event-driven model occurs regularly upon notification …
I completely understands Ur problem and according to me you'll get your answer in this code private Control _control; //The method is called when data is updated (for ex. data comes from TCP/IP) void OnUpdateReceiced(...) { _control.Invoke(new MethodInvoker(delegate { //Raise notification in GUI thread OnListChanged(new ListChangedEventArgs(...)); })); } } I …
According to me, You will get best way to implement the data binding in this code class FeedCollection : BindingList<Feed> { private Control _control; //The method is called when data is updated (for ex. data comes from TCP/IP) void OnUpdateReceiced(...) { _control.Invoke(new MethodInvoker(delegate { //Raise notification in GUI thread OnListChanged(new …
I can definitely help you, if your problem is related to windows. Thread safety is the most important part of software development. You can find thread safety related to windows .net development here [url]http://www.dapfor.com/en/net-suite/net-grid/features/thread-safe-application[/url]. Its an important part of development and helps to create [URL="http://www.dapfor.com/en"]real time trading[/URL] applications
Hello If you have still not get any solution for your "Drop down lists of filter" query, you can visit dapfor and can find the right solution for your problem. There is a complete tutorial related to filters. visit here - [url]http://www.dapfor.com/en/net-suite/net-grid/features/real-time-data-filtering[/url] These can be also used for creating [URL="http://www.dapfor.com/en"]real …
The End.
robea