3
votes
6answers
144 views
Is there any command to update UI immediately?
I want to update a progress bar from running 1 to 100 with this code.
for (int i = 0; i <= 100; i++) {
System.Threading.Thread.Sleep(100);
progressBar1.Value = i;
}
B …
0
votes
3answers
669 views
as3 - dispatchEvent from a parent swf to a child swf
I have one main "parent" swf that loads several other swfs. If something happens in the main swf I need to tell one of the child swfs about it.
This seems to work well the other w …
0
votes
1answer
16 views
How to access Dispatcher in Silverlight tests?
I am using the SL unit test framework for tests (http://code.msdn.microsoft.com/silverlightut). My code is heavily client-server communications dependant, and I access the GUI disp …
0
votes
2answers
76 views
How can I use the Dispatcher.Invoke in WPF? Change controls from non-main thread
I have recently started programming in WPF and bumped into the following problem. I don't understand how to use the Dispatcher.Invoke method. I have experience in threading and I h …
0
votes
1answer
44 views
How can I detect if Dispatcher.DisableProcessing is active?
An exception is raised if one tries to show a message box if the Dispatcher is suspended (Dispatcher.DisableProcessing() called).
InvalidOperationException: 'Dispatcher processing …
0
votes
1answer
32 views
Servlet “newspring” is not available
Trying to set up a new spring project and im having this issue where I get this error (HTTP Status 404 - Servlet newspring is not available) when I navigate to a page that I expect …
0
votes
0answers
45 views
Are there any algorithms for efficient allocation and usage of UI threads for use with WPF?
WPF utilizes a single thread to dispatch events via the windows event pump. When each control is created, it is associated with a thread and consequently all activities associated …
1
vote
1answer
28 views
Creating something similar to Dispatcher for SQL DataContext
My current project is a WPF application with an SQL Server back end.
In WPF, the UI can only be modified by the UI thread. If a UI modification needs to be done on another thread, …
2
votes
4answers
735 views
System.Windows.Threading.Dispatcher and WinForms?
Does a System.Windows.Threading.Dispatcher work on the UI-thread of a WinForms application?
If yes, why? It is coming from WindowsBase.dll which seems to be a WPF component.
If n …
0
votes
2answers
29 views
how can redirect after a dispatcher exception?
On zend framework inside my bootstrap file i have the following code:
$frontController = Zend_Controller_Front::getInstance();
try
{
$front->dispatch();
}
catch (Except …
0
votes
1answer
40 views
Which Dispatcher to use? The Window’s or the Control’s?
Up to now when I wanted to update an UI control from a non UI thread I used syntax like:
Dispatcher.Invoke(DispatcherPriority.Normal,
new Action(()=>Label1.Co …
0
votes
2answers
120 views
Does using dispatcher.Invoke make my thread safe?
In my WPF app I have a long running upload running, which raises progress events as it goes which updates a progress bar. The user also has a chance of cancelling the upload, or it …
0
votes
1answer
360 views
WPF: Passing objects between UI Thread and Background thread
In my Window constructor after InitializeComponents, I need to create an object and bind it to a datagrid. Since the object creation is taking too much time, the windows takes a wh …
1
vote
2answers
126 views
Windows processes in kernel vs system
I have a few questions related to Windows processes in kernel and usermode.
If I have a hello world application, and a hello world driver that exposes a new system call, foo(), I …
0
votes
1answer
115 views
Arraycollection not capturing the thrown event?
I have a collection of objects and each object throws an event every time its value gets updated. Im trying to capture that event by adding a listener to the arraycollection that h …
