Tagged Questions
1
vote
3answers
665 views
Dispatcher is not coming on C# Windows Forms Application
I have a C# Windows Forms Application with a progress bar. I want to progress that dynamically based on some method status. I have that method in a separate class, and am creating a new thread for ...
1
vote
3answers
653 views
Updating UI from Multiple background threads
The issue here is a bit abstract. We all know, for a background thread to update some UI element.
Dispatcher.Invoke()
is the only option (Is it?). However, Dispatcher.Invoke() in itself delegates ...
1
vote
4answers
240 views
Is it necessary to use multi threading concept while updating the same database ?
i have created a windows application(using c# .net) for debugging contest in our department.
in this many user use the same database to select the list of questions and update the marks in their ...