Re: DataGridView - TextBoxColumn - background update to data source
- From: "Marc Gravell" <marc.gravell@xxxxxxxxx>
- Date: Mon, 13 Nov 2006 13:29:54 -0000
Well, a class is not on any specific thread without going to a lot of
trouble... all operations (including events raised) will happen in the
thread of the causing code - so if your background worker does something it
will execute on the background thread, and if your UI does something it will
execute on the UI thread. Hopefully not at the same time ;-p
If receiving events from this class in an MDI scenario, you should check
InvokeRequired and react accordingly. Unfortunately, data-binding may also
attempt to hook up events, and send itself in circles in trying.
Marc
.
- Follow-Ups:
- Re: DataGridView - TextBoxColumn - background update to data source
- From: John J. Hughes II
- Re: DataGridView - TextBoxColumn - background update to data source
- References:
- DataGridView - TextBoxColumn - background update to data source
- From: John J. Hughes II
- Re: DataGridView - TextBoxColumn - background update to data source
- From: Dave Sexton
- Re: DataGridView - TextBoxColumn - background update to data source
- From: John J. Hughes II
- DataGridView - TextBoxColumn - background update to data source
- Prev by Date: Re: Serious Bug System.Collections Sort
- Next by Date: Re: DataGridView - TextBoxColumn - background update to data source
- Previous by thread: Re: DataGridView - TextBoxColumn - background update to data source
- Next by thread: Re: DataGridView - TextBoxColumn - background update to data source
- Index(es):
Relevant Pages
|