Click here to Skip to main content
16,012,223 members
Home / Discussions / C#
   

C#

 
GeneralRe: Progress Message Box? Pin
ahall@mirapoint.com12-Jun-06 11:33
ahall@mirapoint.com12-Jun-06 11:33 
QuestionPassing an instance of the base class to a child class Pin
MrEyes12-Jun-06 6:37
MrEyes12-Jun-06 6:37 
AnswerRe: Passing an instance of the base class to a child class Pin
Dustin Metzgar12-Jun-06 6:49
Dustin Metzgar12-Jun-06 6:49 
AnswerRe: Passing an instance of the base class to a child class Pin
Jun Du12-Jun-06 7:40
Jun Du12-Jun-06 7:40 
QuestionFixing flicker in a DataGridView? Pin
Andrew Stampor12-Jun-06 6:24
Andrew Stampor12-Jun-06 6:24 
GeneralRe: Fixing flicker in a DataGridView? Pin
Office Lineman12-Jun-06 9:22
Office Lineman12-Jun-06 9:22 
GeneralRe: Fixing flicker in a DataGridView? Pin
Andrew Stampor12-Jun-06 9:53
Andrew Stampor12-Jun-06 9:53 
GeneralRe: Fixing flicker in a DataGridView? Pin
Office Lineman12-Jun-06 10:04
Office Lineman12-Jun-06 10:04 
Ahh, the List<t> class implements IList, and not the IBindingList interface. IBindingList fires a ListChanged event that informs the BindingSource to which it is bound, and subsequently the DataGrid to which that BindingSource is bound, that it should update. IList fires no such event, so the BindingSource never knows that it should update itself.

My solution to the same problem was to create a class that derives from System.Collections.CollectionBase and implements IBindingList, and use it in lieu of an IList-based List.


--
I've killed again, haven't I?
GeneralRe: Fixing flicker in a DataGridView? Pin
Andrew Stampor13-Jun-06 4:19
Andrew Stampor13-Jun-06 4:19 
GeneralRe: Fixing flicker in a DataGridView? Pin
Office Lineman13-Jun-06 7:09
Office Lineman13-Jun-06 7:09 
GeneralRe: Fixing flicker in a DataGridView? Pin
Andrew Stampor13-Jun-06 8:40
Andrew Stampor13-Jun-06 8:40 
GeneralRe: Fixing flicker in a DataGridView? Pin
Office Lineman13-Jun-06 9:34
Office Lineman13-Jun-06 9:34 
GeneralThe final piece of the puzzle... Pin
Andrew Stampor13-Jun-06 10:51
Andrew Stampor13-Jun-06 10:51 
GeneralRe: The final piece of the puzzle... Pin
Office Lineman13-Jun-06 11:21
Office Lineman13-Jun-06 11:21 
GeneralRe: Fixing flicker in a DataGridView? Pin
Nougat H.12-Jun-06 10:05
Nougat H.12-Jun-06 10:05 
QuestioncomboBox refresh Pin
andrei_dalcu12-Jun-06 5:33
andrei_dalcu12-Jun-06 5:33 
AnswerRe: comboBox refresh Pin
Paul Brower12-Jun-06 8:15
Paul Brower12-Jun-06 8:15 
GeneralRe: comboBox refresh Pin
andrei_dalcu12-Jun-06 8:26
andrei_dalcu12-Jun-06 8:26 
GeneralRe: comboBox refresh Pin
Mr. VB.NET12-Jun-06 18:20
Mr. VB.NET12-Jun-06 18:20 
QuestionOpen source diagram framework? [modified] Pin
Yuval Naveh12-Jun-06 5:14
Yuval Naveh12-Jun-06 5:14 
AnswerRe: Open source diagram framework? Pin
S. Senthil Kumar12-Jun-06 5:19
S. Senthil Kumar12-Jun-06 5:19 
GeneralRe: Open source diagram framework? Pin
Yuval Naveh12-Jun-06 5:29
Yuval Naveh12-Jun-06 5:29 
Questionhowto parse this text using c# ? Pin
cmpeng3412-Jun-06 4:24
cmpeng3412-Jun-06 4:24 
AnswerRe: howto parse this text using c# ? Pin
Dustin Metzgar12-Jun-06 4:27
Dustin Metzgar12-Jun-06 4:27 
AnswerRe: howto parse this text using c# ? Pin
Ravi Bhavnani12-Jun-06 4:53
professionalRavi Bhavnani12-Jun-06 4:53 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.