Tagged Questions
The cross-threading tag has no wiki summary.
9
votes
1answer
145 views
Detecting cross-thread marshaling by COM RCW objects in C#
I'm working in a large multithreaded C# application handling bunches of COM interop. The other developers and I have ample opportunity to accidentally call Single-Threaded Apartment (STA) COM objects ...
8
votes
7answers
2k views
What's wrong with my cross-thread call in Windows Forms?
I encounter a problem with a Windows Forms application.
A form must be displayed from another thread. So in the form class, I have the following code:
private delegate void DisplayDialogCallback();
...
7
votes
4answers
274 views
Better solution to multithreading riddle?
Here's the task: I need to lock based on a filename. There can be up to a million different filenames. (This is used for large-scale disk-based caching).
I want low memory usage and low lookup times, ...
6
votes
5answers
1k views
Strange cross-threading UI errors
I'm writing a WinForms app which has two modes: console or GUI. Three projects within the same solution, one for the console app, one for the UI forms and the third to hold the logic that the two ...
5
votes
3answers
157 views
Updating UI thread (textbox) via C#
Business Intelligence guy here with enough C# under my belt to be dangerous.
I’ve built a homebrew winforms application that essentially executes a command-line tool in a loop to “do stuff”. Said ...
5
votes
8answers
2k views
A random cross-thread operation exception for Winforms multithreaded UI operation
For some reason, this safe-looking method raises a classic exception.
Cross-thread operation not valid:
Control 'statusLabel' accessed from a
thread other than the thread it was
created on.
...
5
votes
7answers
2k views
“Cross-thread operation not valid” exception on inner controls
I've been struggling with this for quite a while:
I have a function designed to add control to a panel with cross-thread handling, the problem is that though the panel and the control are in ...
4
votes
3answers
176 views
Cross thread operation not valid
im trying to access a rich textbox on another form im using the following code to do so:
Private Delegate Sub StringDelegateChat(text As String, window As ChatWindow)
Private Sub ...
4
votes
3answers
434 views
Intel TBB will work on AMD processors? [closed]
Possible Duplicate:
AMD multi-core programming
Is Intel TBB processor dependent? Will it work on amd or on ARM (under meeGo for example?)
4
votes
2answers
425 views
.NET: How do I invoke a delegate on a specific thread? (ISynchronizeInvoke, Dispatcher, AsyncOperation, SynchronizationContext, etc.)
Note first of all that this question is not tagged winforms or wpf or anything else GUI-specific. This is on purpose, as you will see shortly.
Second, sorry if this question is somewhat long. ...
4
votes
1answer
349 views
Why is cross thread operation exception not thrown while running exe in bin\Debug
I was debugging an application and somewhere in the code, a thread tries to reach a listbox that was created by another thread. On attempt to access the listbox, the application throws a "Cross-thread ...
4
votes
1answer
268 views
How long is the delay between Control.Invoke() and the calling of its Delegate?
I have a code engine that plays long WAV files by playing smaller chunks in succession using the waveOutOpen and waveOutWrite API methods. In order to update my UI as the file plays, from the ...
3
votes
1answer
1k views
WP7 Invalid cross-thread access - ScheduledTaskAgent
In WP7 app I am calling some code to update a live tile from the onInvoke method on the ScheduledAgent class.
Getting an invalid cross-thread error.
The line it is failing on is
var ...
3
votes
1answer
178 views
INotifyPropertyChanged Binding and Cross-Threading Error
I have a GridView element on my GUI that is bound to a data source. I decided to use the INotifyPropertyChanged as that would simplify the interaction by allowing me to modify a class which would ...
3
votes
2answers
92 views
How do I properly handle cross threading issues in my systray app?
So, I took over an existing WinForms app recently. We need to change it to something that runs in the system tray, but still pops up the form when a user wants to. No problem. As per this question: ...
3
votes
2answers
531 views
Generic Types: There is no implicit reference conversion from ToolStripStatusLabel to Control
I'm wanting to update the UI from a SerialPort DataReceived event handler. I discovered a problem because the event handler was implicitly running in a different thread to the form, so rather than ...
3
votes
2answers
309 views
Create objects in worker thread and bind to them
I've a problem with cross-thread operations in C# / WPF / .NET 4.0.
The situation:
I have to create a object tree when the user clicks a button and then bind to the tree. Because the creation takes ...
3
votes
4answers
215 views
C# : Cross Thread
How to access a Control from a thread other than the thread it was created on.( How to avoid the Cross thread error)
Here is my sample code for this
private void Form1_Load(object sender, EventArgs ...
3
votes
1answer
384 views
VB.NET Two different approaches to generic cross-threaded operations; which is better?
VB.NET 2010, .NET 4
Hello,
I recently read about using SynchronizationContext objects to control the execution thread for some code. I have been using a generic subroutine to handle (possibly) ...
3
votes
4answers
538 views
SynchronizingObject vs. Invoke
In my form's class, I've added a method to "fade" it out. This makes use of System.Timers.Timer and the Elapsed event uses a delegate to change the form's opacity. This was the code:
public void ...
3
votes
2answers
301 views
C# WinService with Timer-controlled threadpool operations
I have got a Windows Service class ( inherits from ServiceBase ) which at construction time is provided with a List of objects.
Each Operation describes a DoWork() virtual method.
The point of of the ...
3
votes
1answer
317 views
Dispatcher vs Multithreading
According to Single-Threaded Application with Long-Running Calculation MSDN example, there is a possibility of creating a responsive GUI in just 1 thread. Thanks to the Dispatcher object, as we can ...
3
votes
2answers
336 views
C# COM Cross Thread problem
we're developing a software to control a scientific measuring device. it provides a COM-Interface defines serveral functions to set measurement parameters and fires an event when it measured data.
in ...
3
votes
3answers
1k views
Add a control on a form, from another Thread
This is my first post on this site, which I must say is, great!
Well here is my problem, and I truly hope someone will be able to help me.
I was trying to postpone adding controls to my main form, ...
3
votes
4answers
746 views
Cross thread UI component call
Is this an appropriate way of handling cross-thread operations?
Should I use a new property name, something like "EditValueThreadSafe" instead of overriding "EditValue"? I don't think there is an ...
3
votes
2answers
1k views
C# cross thread operation error
In a c# program for simulating a lan messenger, i have a callback function for beginreceive where i need to display the text received in a particular textbox..
this.textBox1.Text = sb.ToString();
...
3
votes
2answers
229 views
asp.net threading and gui
Are there any issues with changing elements which will appear on a web page within a thread. I am from a windows programming background and obviously if a thread needs to change the GUI in some way ...
2
votes
2answers
81 views
C# Singleton UI Threading Issue
I am using a service that someone else has written that gets market data. It connects to their server and you send it a symbol and it sends back data. Well I am trying to use it to have multiple Views ...
2
votes
1answer
67 views
Cross-thread operation not valid: Control accessed from a thread other than the thread it was created on
I know this question has been asked several times, but I can't quite seem to find why it does that in my situation.
First of, I'll explain my program a bit. It connects to a hardware device though a ...
2
votes
2answers
41 views
Parameter count mismatch when invoking control with multiple parameters
I use a thread to execute some process on a machine. Eventually, the progress is reported back in an other thread. To update the GUI with the status of the process, I use a delegate like this:
public ...
2
votes
1answer
94 views
BindingSource, BindingList, DataGridView and cross-thread access
I have a DataGridView with its source set to BindingSource, whose source is set to BindingList that cotains objects that implement INotifyPropertyChanged. The problem is, the logic that updates items ...
2
votes
2answers
64 views
how to paste text to a Form's RichTextBox from another Form's Thread?
I have a windows form application in C#.Where i have a RichTextBox(Txt) in the Main window(MainForm) and a public method
public void postTxt(String txt)
{
//do some database update
...
2
votes
1answer
59 views
Fixing a Cross-Thread Exception
I need some help fixing a cross-thread exception. I am using Invoke which usually solves this issue, but for some reason it is not wokring:
void paintTimer_Elapsed(object sender, ...
2
votes
2answers
204 views
Async WCF: wait for another call
We have an old Silverlight UserControl + WCF component in our framework and we would like to increase the reusability of this feature. The component should work with basic functionality by default, ...
2
votes
1answer
148 views
C#: Accessing datagridview1 from a backgrounder thread
Im trying to access ui controls on the main thread from a backgroundworker thread. I know this is a well known issue but i cannot find any information on how to access a datagridview in particular ...
2
votes
2answers
264 views
How to Sleep a thread until callback for asynchronous function is received?
I have a function that needs to be executed only when a callback is received from asynchronous function.
Like
I call asynchronous function Stop() and soon after that I call asynchronous function ...
2
votes
2answers
517 views
Windows Phone 7 - Handle Error in Application_UnhandledException with WebClient
I need to handle exception in Application_UnhandledException event of App.xaml.cs file. I am getting the Exception object using e.ExceptionObject. Now, I need to send the exception details to my ...
2
votes
2answers
302 views
Can MessageBox.Show cause cross-thread exceptions?
Can I call MessageBox.Show on a child thread without worrying about a cross-thread exception? I know the ostensible answer would be "try it and find out", which I did, successfully, but I've noticed ...
2
votes
2answers
471 views
C#/Winforms App freezing/lagging
I have an Application in C#/Winforms that is basically used to run test for customers accounts in a specific order/setup. They are all tests run in browsers and so I built it so it would automate the ...
2
votes
2answers
380 views
Cross-thread operation not valid, even if using InvokeRequired
I have a form with my custom controls on it.
I have a method in my Form:
private void SetEnabledOnControls(bool val)
{
if (InvokeRequired)
{
...
2
votes
1answer
669 views
VB.Net: Understanding the way Application.Run() works
Hans Passant gave me a great answer here, so I thought of asking for more details to try to understand the way Application.Run() works.
As far as I understand from the docs, it seems that ...
2
votes
3answers
238 views
Error on invoke when the form has closed already
I am trying to display some information on a grid queried from a sql server. The data gathering can take about 10 seconds so I don't want to lock the UI thread.
I currently have code like:
...
2
votes
4answers
332 views
C# - Possible to safely have an owned form in a separate thread?
I am attempting to write a specialized onscreen keyboard (OSK) for an application I'm writing in C#. To facilitate this, I've created a form which has several buttons on it representing keys, and ...
2
votes
1answer
146 views
Using Hibernate between different threads,JVMs and servers
I'm working on a system which has a 4 modules, each working on its own server and each should be able to clustered.
What I basically need is to have the ability to work on the same entities on the ...
2
votes
1answer
242 views
cross-thread operation even when executing on UI thread
I have a function which adds a control to a parent control which is called from threads different to the thread the controls were created on. This is how it goes:
1 delegate void ...
2
votes
4answers
866 views
Delegates And Cross Thread Exception
Whenever i am updating UI in windows form using delegate it gives me cross thread exception
why it is happening like this?
is there new thread started for each delegate call ?
void ...
2
votes
3answers
202 views
Call event from original thread?
Here is my problem, I have a class which have a object who throw an event and in this event I throw a custom event from my class. But unfortunately the original object throw the event from another ...
2
votes
3answers
679 views
Altering the ObservableCollection according to FileSystemWatcher change notification
I'm trying to update my ObservableCollection as the FileSystemWatcher notifies changes. I know this is not possible because of cross thread operations.
So i would like to get the name of the file ...
2
votes
4answers
329 views
Find owner thread of GUI control
Working on a .NET app, I've run in a 'cross-thread operation not valid' exception, only it seems to happen in the correct thread.
Is there a way to find out which thread is the one where a specific ...
2
votes
4answers
1k views
Cross-thread operation not valid when reading property
I am getting this error when I try to read a property from a custom panel control. The property returns the value of a textbox within the panel. How do I read the property that returns the value of ...