0
votes
2answers
401 views
How do I Invoke Ajax OnClick from Provider Web Part to Consumer Web Part
I am attempting to manage an ajax connection by calling a button onclick method on a separate web part in order to force the partial postback on the consumer.
Web part A (Provid …
1
vote
5answers
82 views
Is this a right case for using the Threadpool?
Here's the setup: I'm trying to make a relatively simple Winforms app, a feed reader using the FeedDotNet library. The question I have is about using the threadpool. Since FeedDotN …
6
votes
6answers
171 views
C# Multithreading — Invoke without a Control
I am only somewhat familiar with multi-threading in that I've read about it but have never used it in practice.
I have a project that uses a third party library that shares the st …
3
votes
5answers
1k views
Dynamically invoke properties by string name using VB.NET
I'm currently working on a project where a section of the code looks like this:
Select Case oReader.Name
Case "NameExample1"
Me.Elements.NameExample1.Value = oReader.R …
0
votes
1answer
27 views
Which cross threading invoke function is better for a control that is inherited?
I have a relatively simple question regarding the best way to call the DataGridView.Rows.Add function when it is inherited into the current control. Which is the best way to make t …
12
votes
14answers
15k views
Cross-thread operation not valid: Control accessed from a thread other than the thread it was created on.
i have a scenario. (Windows form, c#.Net )
There is a main form which host some user control.
user control does some heavy data operation, as such if i dirctly call the Userco …
0
votes
4answers
53 views
Asynchronous runtime method invocation
I am loading some assemblies at run time and invoking methods on them using Reflections (MethodInfo.Invoke).
Now I want to make these calls asynchronous. So I am thinking of using …
0
votes
3answers
83 views
How to make Sleep on background thread work with Invoke
I have a PictureBox control on a Form that is supposed to draw something every 100ms.
The background thread performs some calculation in a loop and after every iteration, it fires …
0
votes
1answer
131 views
Update UI from different process fails
I'm trying to put standard output from nmap into WPF window application (textbox exactly). I'm trying to use Dispatcher.Invoke but when nmap process starts everything just freezes. …
1
vote
2answers
42 views
Invoke C dll functions,structs and callbacks in C#
Below is the header file.can anyone please give a idea to call the callback function below.
//Function Prototype
int PASCAL EXPORT RegisterCallbackFunctions (TCallbacks CallbackF …
0
votes
2answers
27 views
PHP Callable Object as Object Member
I have a class Logger which, among other things has a method Log.
As Log is the most common use of the Logger instance, I have wired __invoke to call Log
Another class, "Site" con …
0
votes
1answer
64 views
Input string was not in a correct format vb net
This is really confusing me as I'm not doing anything with Strings.
This is the details the debugger gives back to me:
System.FormatException was unhandled
Message=Input s …
0
votes
1answer
93 views
How to invoke a method with a superclass.
I'm trying to invoke a method that takes a super class as a parameter with subclasses in the instance.
public String methodtobeinvoked(Collection<String> collection);
Now …
1
vote
2answers
75 views
Invoking UI delegate causes UI to be hidden…
Hi,
Suppose I have thread 1, the main window UI thread and thread 2, a login UI thread that is modal form.
Now thread 1 executes a piece of code and wants to change a UI element …
0
votes
1answer
11 views
Invoke after async call changes two controls
I cannot find the solution for this problem, here is the simplified example:
On a windows form I have 2 text boxes (invokeText1, invokeText2) and two buttons (invokeButton1, invoke …
