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

learn more… | top users | synonyms

1
vote
0answers
48 views

Generic method invocation using annotations

I am creating a web application and I am injecting a SystemManager interface in it. All of my business logic resides behind it and pages just have to request data from it. I would like to create a ...
0
votes
2answers
21 views

Execute a method with JMX without JConsole

How to execute a method with JMX without JConsole? I want to invoke methods through JMX from Java code. With the code below I can get the name of all methods of the MBean interface but I am not yet ...
0
votes
2answers
28 views

ClassCastException in BookingApp

I'm getting a ClassCastException at: RVBooking rvbooking = (RVBooking) bookingList.get(iweight); I want to store the user's weightvehicle input and invoke the recordWeight() method. Sorry if i am ...
0
votes
2answers
37 views

Which function is being called by InvokeHelper

In my code there is a function call to InvokeHelper. What I found on internet is that InvokeHelper is used to call a function by using dwDispID. This is the call. InvokeHelper(0xd, DISPATCH_METHOD, ...
0
votes
0answers
39 views

Calling a C++ Programm from Android with Java and JNI

I am working on an Android Java Platform and want to use a complete program that i developed in c++ to run. The c++ program consists of several cpp files with headers. My new Android project attaches ...
-1
votes
0answers
27 views

Java pause until keyword Speech Recognition

I need my program to constantly listen for a keyword, and until it is spoken It does nothing. Im trying to make a "simple" AI that runs in the background and will do nothing until I say its name (+ ...
1
vote
1answer
39 views

Garbage collection in Invoked Methods Java

My question actually consists of two parts. The first question has to do when using the java Method class to invoke a method from a loaded class. Does this "invoked" method run in a separate thread? ...
2
votes
0answers
52 views

Creating Windows Form outside of Application.Run results in strange behaviour. Why?

After a week of code-debugging I found that the problem my Windows-Forms based GUI was behaving strangely was because I was running the form as: Form1 myGui = new Form1(); Application.Run(myGui); ...
1
vote
2answers
45 views

C# Catching Exception From Invoked Delegate on another Thread

I have some code as follows. This is running on "Thread 2" WebBrowser browser = this.webBrowser browser.Invoke(new MethodInvoker(delegate { ...
0
votes
0answers
21 views

“The input array was empty” ArgumentException when making a invoked cross thread call

I have two separate threads and sometimes I need to call members from the other thread. I do this via the normal method of invoking. Here's the basic setup: void Foo() //On thread 1 { if ...
0
votes
1answer
44 views

Classloader used in Android Application

I ran into a thorny problem in dealing with Android applications - loading class from a .zip or .dex in an app. I cant deal with the Classloader problem .Please help me, thanks. im trying to load a ...
2
votes
1answer
75 views

Thread invoke the main window?

So basically I have a MainWindow, a class SetupViewModel defined in a separate cs file, and another class ImageViewModel in a separate cs file; I am wondering is there anyway I can invoke the ...
0
votes
1answer
28 views

Invoke or BeginInvoke cannot be called on a control until the window handle has been created

hey guys I get this exception when my application closes. CustomerReadySub is an event that I have subscribed to. The error happens on this line fTypeLabel.Invoke(new ...
0
votes
2answers
42 views

Getting a listbox item value safely in a thread

Hi i have a program that run threads and updates the UI in the process. I have used .invokerequired for a safe threading and everything is running OK. In one of the threads it is necessary to use the ...
0
votes
1answer
19 views

Invoke a in-jar method at startup

I want to initialize my external jar library when the JVM starts without a method call. Is there A way I can get a "On JVM Startup" method invoked in an external jar?
0
votes
1answer
42 views

how do i convert these c# winform codes to be compatible on c# wpf?

hi im working on a project that uses invoke and threads.. it is a simple remote desktop program with chat.. i got a sample here on the internet in c# winform, but i would like to convert it to wpf.. i ...
4
votes
1answer
90 views

Func<T>() vs Func<T>.Invoke()

I'm curious about the differences between calling a Func directly vs using Invoke() on it. Is there a difference ? Is the first, syntactical sugar, and calls Invoke() underneath anyway ? public T ...
0
votes
1answer
35 views

Invoke and BeginInvoke are called but never resolved

I am taking care of the GUI thread of a piece of software. I have to display inside a gridview data that needs to be constantly polled from the underlying APIs. I created a method called Sync() ...
0
votes
0answers
16 views

Visual c : How can you declare an object and invoke its methos from a class defined in a diffrent Project in same solution?

Visual c++: How can you declare an object and invoke its methos from a class defined in a diffrent Project in same solution? I am trying to use Microsoft CppUnitTestFramework. I have two seperate ...
1
vote
2answers
51 views

UI freezes when I add random numbers to a listbox on a separate thread

When I load the windows form, using a new thread, I add a random number to a listbox every second and when it reaches 10 numbers, I generate a new set of 10 random numbers. However, at the moment, I ...
0
votes
0answers
70 views

Emgu.CV.CvInvoke Error on Face Recognition code using Emgucv C#

I was trying to run the codes i have got from codeproject http://www.codeproject.com/Articles/239849/Multiple-face-detection-and-recognition-in-real-ti .The code build fine but during runtime that it ...
2
votes
1answer
52 views

Nunit-C#: run specific Tests through coding

I am using Selenium with C# fro Automation, and i want to invoke the Nunit through coding, i did it using below code CoreExtensions.Host.InitializeService(); TestPackage testPackage = new ...
1
vote
3answers
56 views

How to invoke E-mail application?

How to invokeE-mail application by code in ios system? I want to check email interface rather than sending mail interface. Thanks.
2
votes
1answer
60 views

synchronize wpf dispatcher.invoke from multiple background threads

Do I need to synchronize calls to the Dispatcher.Invoke if accessing from multiple background threads? I know the Dispatcher.BeginInvoke automatically synchronizes calls for silverlight app ...
0
votes
0answers
23 views

Invoke media player in fullscreen mode (Blackberry 6.0)

I have this piece of code: Invocation invocation = new Invocation(url, type, BlackBerryContentHandler.ID_MEDIA_CONTENT_HANDLER, true, ...
1
vote
2answers
57 views

how to make a method which can change text property of any text box from any thread in C#?

I am not a really good C# programmer. I am used to C but not C#. I know that from a thread other than UI thread we cannot change the property of textbox and labels. So after trying few different ...
-1
votes
1answer
52 views

How to create and control a form within another one synchronously using Invoke and Begin Invoke?

I'm working on a project in which I need to run a form within another for example i have two forms class: form1 and form2 in form1: public void func1() { form2 f=new form2(); f.show(); ...
2
votes
1answer
62 views

C# Cross thread operation not valid after invoked

I have a problem with Cross-thread operations. I have the following method private void UpdateLabel(string text) { if (this.richTextRxMessage.InvokeRequired) { ...
-1
votes
1answer
60 views

Add a layout (button, textview, etc) into virtual keyboard without create custom keyboard (Android) [closed]

I want to put a layout - it may include button, textview, tabhost, etc - in Android virtual keyboard. It will be simple if I create a custom keyboard. However, I want to add it to every custom ...
0
votes
0answers
33 views

Edit domain Parameter Error with JMS on Weblogic 10.3

here is my code, it is running well on weblogic 12, but throw exception on weblogic 10.3 public void initConnection(ConnectInfo info) throws Exception { String JNDI = "/jndi/"; String ...
-1
votes
1answer
106 views

Invoke or BeginInvoke cannot be called on a control until the window handle has been created

I am executing following code: grid.Invoke(New MethodInvoker(AddressOf RefreshDataSource)) getting InvalidOperationException exception. Message: Invoke or BeginInvoke cannot be called on a control ...
0
votes
1answer
58 views

NullReferenceException when debugging and using invoke

I found an interesting behavior yesterday while debugging a Windows Forms application, please refer to this code: bool enter = false; Debugger.Break(); if (enter) // Force to enter the if clause, ...
0
votes
2answers
84 views

Invoke the main method of a class in Mule

I have a Java class that writes data to a file every time you run the program. The Java class is written in the Mule project, and i would like to use a mule flow to invoke this Java class. So my ...
0
votes
1answer
33 views

Method for replacing INVOKE

Is there a way around using the Invoke and InvokeRequired methods for objects which were created in other threads? Is there a method which is more direct and less memory intensive? Perhaps a state ...
0
votes
0answers
93 views

Blackberry 10 qml to invoke and open a PDF file

I am trying to figure out how to get my pdf file to open when an image button is pressed. Following is the code i am using: Container { layout: DockLayout {} ImageButton { ...
1
vote
2answers
31 views

Save file from Richtextbox using Invoke

I am having a RichTextbox and I am trying to save file using public bool SaveNote(string path) { try { _rtbContent.SaveFile(path, RichTextBoxStreamType.RichText); return true; ...
1
vote
2answers
61 views

Does a WCF Web Service, when invoked, use the config file of the invoking application?

Assume that I have an ASP.NET application and a WCF Web Service, both deployed on IIS 7. One of my colleagues claims that when an ASP.NET application redirects the response to WCF Web Service, the ...
2
votes
4answers
91 views

C# Control.Invoke a method group

I am using threads to run long operations in my program's UI so that it doesn't lock up. However, in those tasks I need to update controls, which is impossible not from the thread they were created ...
0
votes
0answers
51 views

How to send simple string to a webpage from Android

I have a small problem. I want to somehowe invoke a button in a webpage from an android application and send some information to this page. This is the part of the webpage I want to interact with. ...
1
vote
1answer
37 views

How can take ref parameter using Invoke with Reflectıon

How can take ref parameter(OutputData) using Invoke with Reflectıon. objectValues ıs an object array that take an parameters ıs sendıng parameter to "FM_DEC_ENC" Method.This method contains 8 ...
0
votes
2answers
31 views

Issue with returning values from invoking same function multiple times

Ok, so I'm doing this homework assignment and my teacher's first language is not English and is not always the best at giving directions. I'm trying to write a program that asks for a midterm score ...
1
vote
1answer
52 views

Invoking method with custom delegate vs. action

I have seen Microsoft suggest using a custom Delegate in the InvokeRequired pattern But I can't figure out why one wouldn't just save the trouble of defining the delegate when doing something as ...
0
votes
3answers
145 views

Attempting - Multithreading - in VB.net Windows Forms

For a while now i have been using this code: Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click Dim t2 As New Threading.Thread(AddressOf SetLabelText2) ...
0
votes
0answers
88 views

Invoke or BeginInvoke cannot be called after opening form the second time

I have a client/server system on which the clients behave as slaves to the server. One of my forms has a listview which is populated by the processes running on the client. This same form can only be ...
0
votes
1answer
92 views

Coldfusion 10 invoke cfc error

Anyone have any idea on how to fix this? "Unable to invoke CFC - The value returned from the getAllContacts function is not of type Contacts[]. If the component name is specified as a return type, ...
1
vote
0answers
71 views

Changing dataGridView cell colour from another form / class

I am trying to change the cell colours of the dataGridView on Form1 from Form2. I get an error on the frm.Invoke(new MethodInvoker(delegate() line. How could I do this? Error: Invoke or ...
0
votes
1answer
341 views

Asynchronous Server Socket Example

I found this code of Asynchronous Server Socket Example and i am trying to get the data out from the thread where i receive info to update a textbox, but i can't just use a simple string. I've tried ...
-1
votes
3answers
57 views

how to restrict Java method invocation only for 1st occurance of any event?

Made a workaround by making addButton return a boolean (which is true when clicked and false when not) then I did this: if (addButton) { doSomething(); } (Sorry, title can be misleading. Couldn't ...
1
vote
2answers
92 views

Advantages and disadvantages of using “()” while calling function in Javascript?

There are explanations about the JavaScript methods "call" and "apply" in many places. However, I couldn't find any explanation about invoking functions using (). For instance: var a = ...
0
votes
2answers
83 views

Resolved: Thread and Invoke, how to modify a label?

I work on an application in c# and I have a problem with my thread and my UI... I want to add +1 on my label when the thread is running. The problem is I don't know how I can fix that... I have read ...

1 2 3 4 5 14