Top "Invoke" questions

Executes the specified delegate on the thread that owns the control's underlying window handle.

How to get PowerShell to wait for Invoke-Item completion?

How do I get PowerShell to wait until the Invoke-Item call has finished? I'm invoking a non-executable item, so I …

powershell invoke wait
VB.NET Delegates and Invoke - can somebody explain these to me?

I'm new to the world of threading, but a few aspects of an app I'm working on require me to …

vb.net delegates backgroundworker invoke
How to read combobox from a thread other than the thread it was created on?

I am trying to read a combobox.Text from a thread other than the thread it was created on but …

c# multithreading thread-safety invoke
Reflection MethodInfo.Invoke() catch exceptions from inside the method

I have a call to MethodInfo.Invoke() to execute a function through reflection. The call is wrapped in a try/…

c# exception reflection methods invoke
How to use Reflection to Invoke an Overloaded Method in .NET

Is there a way to Invoke an overloaded method using reflection in .NET (2.0). I have an application that dynamically instantiates …

.net reflection .net-2.0 invoke overloading
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 "…

vb.net reflection invoke
Calling ASP.net Web Service from C# Application

I have a question. How can i invoke a web service and get the result from a C# desktop application. …

c# asp.net web-services desktop invoke
How catch return value in a Powershell script

I have a powershell script (.ps1) that execute other Powershell script that has a return value. I invoke to the …

powershell return-value invoke
How to invoke a method which throws an Exception using Java Reflection?

I would like to invoke a method, using Java Reflection. The problem is that this method (which I wrote) throws …

java exception reflection invoke
C# Threading using invoke, freezing the form

I'm trying to use threads and prevent the program from freezing while the thread is busy. It should show the …

c# multithreading invoke