Click here to Skip to main content
15,920,111 members
Home / Discussions / C#
   

C#

 
AnswerRe: Writing Assembly Attributes Programmatically Pin
Martin Jarvis13-Apr-10 10:32
Martin Jarvis13-Apr-10 10:32 
AnswerRe: Writing Assembly Attributes Programmatically Pin
Paw Jershauge13-Apr-10 10:41
Paw Jershauge13-Apr-10 10:41 
GeneralRe: Writing Assembly Attributes Programmatically Pin
Nadia Monalisa13-Apr-10 11:00
Nadia Monalisa13-Apr-10 11:00 
GeneralRe: Writing Assembly Attributes Programmatically Pin
PIEBALDconsult13-Apr-10 11:17
mvePIEBALDconsult13-Apr-10 11:17 
GeneralRe: Writing Assembly Attributes Programmatically Pin
Nadia Monalisa13-Apr-10 11:46
Nadia Monalisa13-Apr-10 11:46 
GeneralRe: Writing Assembly Attributes Programmatically Pin
Luc Pattyn13-Apr-10 13:16
sitebuilderLuc Pattyn13-Apr-10 13:16 
GeneralRe: Writing Assembly Attributes Programmatically Pin
PIEBALDconsult13-Apr-10 13:36
mvePIEBALDconsult13-Apr-10 13:36 
GeneralRe: Writing Assembly Attributes Programmatically Pin
Luc Pattyn13-Apr-10 13:41
sitebuilderLuc Pattyn13-Apr-10 13:41 
GeneralRe: Writing Assembly Attributes Programmatically Pin
PIEBALDconsult13-Apr-10 13:47
mvePIEBALDconsult13-Apr-10 13:47 
QuestionPrint images with the correct size Pin
Eagle3213-Apr-10 9:33
Eagle3213-Apr-10 9:33 
AnswerRe: Print images with the correct size Pin
Alan Balkany14-Apr-10 3:57
Alan Balkany14-Apr-10 3:57 
GeneralRe: Print images with the correct size Pin
Eagle3214-Apr-10 11:55
Eagle3214-Apr-10 11:55 
GeneralRe: Print images with the correct size Pin
Alan Balkany15-Apr-10 2:56
Alan Balkany15-Apr-10 2:56 
QuestionRunning a BackgroundWorker in a Single Threaded Apartment Pin
William Winner13-Apr-10 9:09
William Winner13-Apr-10 9:09 
AnswerRe: Running a BackgroundWorker in a Single Threaded Apartment Pin
Luc Pattyn13-Apr-10 11:08
sitebuilderLuc Pattyn13-Apr-10 11:08 
GeneralRe: Running a BackgroundWorker in a Single Threaded Apartment Pin
William Winner13-Apr-10 11:21
William Winner13-Apr-10 11:21 
GeneralRe: Running a BackgroundWorker in a Single Threaded Apartment Pin
Luc Pattyn13-Apr-10 11:32
sitebuilderLuc Pattyn13-Apr-10 11:32 
GeneralRe: Running a BackgroundWorker in a Single Threaded Apartment Pin
William Winner13-Apr-10 11:49
William Winner13-Apr-10 11:49 
GeneralRe: Running a BackgroundWorker in a Single Threaded Apartment Pin
Luc Pattyn13-Apr-10 12:04
sitebuilderLuc Pattyn13-Apr-10 12:04 
GeneralRe: Running a BackgroundWorker in a Single Threaded Apartment [modified] Pin
William Winner13-Apr-10 12:15
William Winner13-Apr-10 12:15 
GeneralRe: Running a BackgroundWorker in a Single Threaded Apartment Pin
Luc Pattyn13-Apr-10 13:04
sitebuilderLuc Pattyn13-Apr-10 13:04 
seems like you are saying somewhere is a button handler that has a form.ShowDialog() inside; this will block its thread as long as the modal dialog is open, and prevent a BGW to report progress (i.e. the progress reports will get queued, and the BGW will continue its job, but the progress reports will not dequeue until the modal form closes).

possible solutions:
- don't use modal dialogs;
- don't report progress while a modal dialog is showing;
- maybe there is some hack that makes it work, I don't know as I never got in that situation.

I suggest you perform a little experiment to confirm, e.g. temporarily replace ShowDialog() by Show().

Smile | :)
Luc Pattyn [Forum Guidelines] [Why QA sucks] [My Articles]

Prolific encyclopedia fixture proof-reader browser patron addict?
We all depend on the beast below.


GeneralRe: Running a BackgroundWorker in a Single Threaded Apartment Pin
William Winner13-Apr-10 13:18
William Winner13-Apr-10 13:18 
GeneralRe: Running a BackgroundWorker in a Single Threaded Apartment Pin
Luc Pattyn13-Apr-10 13:34
sitebuilderLuc Pattyn13-Apr-10 13:34 
GeneralRe: Running a BackgroundWorker in a Single Threaded Apartment Pin
William Winner16-Apr-10 10:12
William Winner16-Apr-10 10:12 
GeneralRe: Running a BackgroundWorker in a Single Threaded Apartment Pin
Luc Pattyn16-Apr-10 10:26
sitebuilderLuc Pattyn16-Apr-10 10:26 

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.