Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

35
votes
3answers
10k views

C#: Automating the InvokeRequired code pattern

I have become painfully aware of just how often one needs to write the following code pattern in event-driven GUI code, where private void DoGUISwitch() { // cruisin for a bruisin' through ...
13
votes
5answers
1k views

What's wrong with calling Invoke, regardless of InvokeRequired?

I've seen the common setup for cross threading access to a GUI control, such as discussed here: ...
6
votes
4answers
2k views

Run code on UI thread without control object present

I currently trying to write a component where some parts of it should run on the UI thread (explanation would be to long). So the easiest way would be to pass a control to it, and use ...
5
votes
5answers
70 views

how to use Invoke method in a file of extensions/methods?

Well, I'm writing a file of extensions/method useful to strings,label,linklabels,class etc. but, I have a problem. I have an showMessage() method that change the Text of label, works fine. But I ...
3
votes
1answer
394 views

SynchronizationContext and InvokeRequired

I have been looking all over for an answer to this question, but can't seem to find a satisfactory answer. Maybe someone here can enlighten me. I have a descendent of BindingList<T> that ...
3
votes
4answers
1k views

Fire event from Async component in UI thread

I'm building a non-visual component in .Net 2.0. This component uses an asynchronous socket (BeginReceive, EndReceive etc). Asynchronous callbacks are called in the context of a worker thread created ...
3
votes
3answers
448 views

When does the vaIue of the InvokeRequired property change?

When i want to use delegate class to make call while windows form working, i always have to use InvokeRequired. It is ok. But who changed the InvokeReuqired property while it is working. Please check ...
2
votes
1answer
53 views

What is wrong with my InvokeRequied #2?

The first topic is What wrong with my InvokeRequied I followed the answer that he recommended it to me but I found a new problem. The result of below picture is cross thread exception. What is ...
2
votes
2answers
46 views

Multi-threading, access UI control

I have a simple app with the usual UI thread and a background worker, in the background worker I need to dynamically create LinkLabels and place them in a FlowLayoutPanel. In order to do this I need ...
2
votes
2answers
117 views

Stackoverflow error while checking InvokeRequired

I'm getting a stackverflow error while executing InvokeRequired. System.StackOverflowException was unhandled How to fix it? There is no info i View Details. FIXED VERSION: public ...
2
votes
3answers
208 views

InvokeRequired hangs

The UI thread hangs occasionally at the statement 'if (this.InvokeRequired)' in the following method. Can you help me to identify the cause of the issue public void ...
2
votes
3answers
527 views

thread Invocation in C# .WPF

there. I'm using C# .wpf, and I get this some code from C# source, but I can't use it. is there anything that I must change? or do? // Delegates to enable async calls for setting controls properties ...
2
votes
3answers
361 views

Interview Question: When Control.InvokeRequired do you use Control.Invoke or Control.BeginInvoke?

I have had recently one of those really bad interviews, where they play good cop/bad cop with you. Whatever I replied wasn't good enough for one of them and my confidence was shrinking minute by ...
1
vote
3answers
408 views

C# cross-thread call problem

I'm writing a form app in c# and I need to be able to change the contents of a Rich Text Box from any thread, I tried using a delegate and InvokeRequired, but the delegate I made still gives me a ...
1
vote
3answers
479 views

InvokeRequired is true on PictureBox. How to deal with this?

I had another question on my PictureBox calls giving me 3 kinds of errors, some great answers came in particularly from Conrad Frix. So it led me to figure out where my problem is, but now to fix it ...
1
vote
2answers
371 views

Finding methods that require InvokeRequired

Dear all, I come to you to see if someone has an idea on how to solve a problem I've come across while doing a migration to ActiveMQ. I'm using ActiveMQ to send notifications within this project (in ...
0
votes
2answers
53 views

What happen with my InvokedRequired?

What wrong with my code ?? Why it not go to true statement ?
0
votes
1answer
34 views

How do I use Control.Invoke if I need to pass in a mixture of reference and value types?

How do I do something like the following? private delegate void RenameOperation(string name, string uniqueName, int position); private void AssignColumnNames(string name, string uniqueName, int ...
0
votes
0answers
94 views

Why does the StatusBar.Invoke method not work for a ToolStripProgressBar?

I have recently been working on an application where I wanted to display the progress of another thread in the status bar via the ToolStripProgressBar control that is contained in the StatusBar ...
0
votes
3answers
47 views

Removing Text with an Invoke?

So, the documentation that I've found online so far regarding the Invoke property doesn't seem to be particularly good, which is actually kind of annoying, believe it or not. I understand what Invoke ...
0
votes
2answers
65 views

Why bother with InvokeRequired

I understand the need to use Invoke/BeginInvoke to make calls from worker threads to functions or procedures which make changes to components which belong to the UI thread... My question is - is ...
0
votes
1answer
91 views

correct access of a windows form inside backgroundworker thread

I have a winforms app, and I need to access the Handle property of a main form, inside a Backgroundworker thread. I have made a thread safe method that calls the main form with InvokeRequired. My ...
0
votes
2answers
125 views

How to Invoke() when I have no Control available

I'm writing a connection handler (a dialog to request username and password). The code is a handler that shows a dialog. This code could be called from a thread, so I need to Invoke() if ...
0
votes
1answer
403 views

Fixing thread safe calls from backgroundWorker

using System; using System.ComponentModel; using System.Net; using System.Windows.Forms; using Ionic.Zip; namespace downloader { public partial class GUI : Form { string desktop = ...
0
votes
1answer
962 views

VB.net Invoke a property change in a control

Lots of examples of how to invoke methods, but how does one change a simple property? For demonstration-sake, here's a very simple set of code that should help. Let's say I need to set the visible ...
0
votes
1answer
257 views

Winforms data-binding to business objects in a multi-threaded scenario without InvokeRequired?

For example, I've got a business object Person: class Person : INotifyPropertyChanged { string Name { get; set; } DateTime DateOfBirth { get; set; } } // ^ abbreviated for better legibility; ...
0
votes
3answers
257 views

Events and Multithreaded code in .NET

Project is C#. So I have a bunch of multithreaded code that is designed to be run as a library. It's in a seperate project from the UI. My library has a central object that needs to be created ...
0
votes
2answers
169 views

Control.Invoke never calls delegate

I'm working with the DevExpress XtraGrid control. I have a routine that goes thru and adds all the controls on the current form dynamically, and launches on a seperate thread the routine for a given ...