Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
6answers
3k views

What is a message pump?

In this thread (posted about a year ago) there is a discussion of problems that can come with running Word in a non-interactive session. The (quite strong) advice given there is not to do so. In one ...
8
votes
6answers
931 views

Exceptions silently caught by Windows, how to handle manually?

We're having problems with Windows silently eating exceptions and allowing the application to continue running, when the exception is thrown inside the message pump. For example, we created a test MFC ...
4
votes
2answers
816 views

How to make a program not show up in Alt-Tab or on the taskbar

I have a program that needs to sit in the background and when a user connects to a RDP session it will do some stuff then launch a program. when the program is closed it will do some housekeeping and ...
4
votes
3answers
4k views

Message pump in .NET Windows service

I have a Windows Service written in C# that handles all of our external hardware I/O for a kiosk application. One of our new devices is a USB device that comes with an API in a native DLL. I have a ...
3
votes
3answers
509 views

“Emulating” Application.Run using Application.DoEvents

I'm getting in trouble. I'm trying to emulate the call Application.Run using Application.DoEvents... this sounds bad, and then I accept also alternative solutions to my question... I have to handle a ...
3
votes
5answers
2k views

Run multiple UI Threads

Skip to the bottom for the question; this is just some extra info I am using a component (GeckoFX) to render some websites, well fine, yet it can only be used in a Windows Form; as it has to bind to ...
3
votes
3answers
863 views

Sending a message to the Windows GUI Thread

I've noticed that when you create a web service object (inheriting from SoapHttpClientProtocol) and you use the Async method, it makes the callback on the Windows GUI thread. Does anyone know how ...
2
votes
2answers
202 views

Ending a Program Mid-Run

pythoncom.PumpMessages() From what I understand this line basically tells the program to wait forever. For my purposes it seems to be working. However, I'd like to be able to end the program given ...
2
votes
2answers
221 views

Should every VCL form has its own message loop/pump for threading?

I'm attempting to implement a MVP pattern in my latest project. Currently using the VCL library that comes with C++ Builder 2007. My thinking is I don't need to do Application->Run(), or worse ...
2
votes
2answers
689 views

How to programmatically exit from a second message loop?

I'm trying to create a second message loop to process/filter low level messages asynchronously in C#. It works by creating a hidden form, exposing it's Handle property to be hooked, and run a second ...
2
votes
6answers
1k views

Pumping Windows Messages During Long Operation?

I'm getting the following message on a big operation that I'm running: The CLR has been unable to transition from COM context 0x1fe458 to COM context 0x1fe5c8 for 60 seconds. The thread that ...
1
vote
2answers
54 views

Is it OK to call “Application.DoEvents” while a modal progress dialog is up?

I have a lengthy process that I can't run asynchronously, so just like Explorer when you're copying files, I have a progress dialog. I show the dialog modally, then perform the operations (we'll call ...
1
vote
3answers
663 views

How to forward messages (eg. mouse wheel) to another Control without stealing focus and without P/Invoke?

I want to forward a message (such as WM_MOUSEWHEEL) when I'm over this control with the mouse, without stealing the focus. This problem can be easily solved intercepting the message with an ...
1
vote
1answer
72 views

summarizing contents of the Windows Message Queue?

We have a CF.NET 3.5 app that seems to work fine for about 4 hours before a specific bug appears: Once buggy, there is a delay of approx 30 seconds after a mouse click before the corresponding ...
1
vote
3answers
247 views

try/catch all exception in C#

I would like to catch all unhandled exceptions in my UI app in C#, so that I can log them, send them by mail and restart the app. How can I simply get this done? I tried: try { ...
1
vote
2answers
361 views

Sending and receiving Windows messages

Windows messages seems a good way to notify an application on Windows OSes. It actually works well, but few question comes up to my mind: How to specify structured data to the lparam of the ...
1
vote
3answers
137 views

Does Speech Recognition using .NET Framework require a message pump?

I'm writing a plugin (dll file), and I'm creating a WinForm as its interface/dialog. If it does require a message pump, how and where should I create one?
0
votes
0answers
24 views

Unwanted message pumping inside OleDbCommand.ExecuteReader

I have a rather complicated application (that is refactoring it is not an option) in which OnPaint often involves a lot of background work, including database access. When I load a file (of my program ...
0
votes
2answers
75 views

Why does Application.Idle never fire when my form is hosted in a MFC application?

I'm building a .net plugin for a MFC application. I created a form using WinForms and .net4. The form is shown after user clicks a button in the MFC application. One of my controls uses ...
0
votes
1answer
82 views

WPF application calls an API that needs a message pump; Dispather.Run() causes problems

I have a WPF app that uses a non-WPF vendor library. My app does not receive any events that the library fires. I've been told that this is because I need a message pump. In another (very similar) ...
0
votes
1answer
469 views

Why do I get “Object is currently in use elsewhere” exception?

I have a C# WinForms application. This exception is thrown within the static void Main() method when a DevExpress XtraMessageBox is displayed prior to starting up the main UI form. Below is the code ...
0
votes
1answer
86 views

pumpevents - customized look and feel java taking too much system resources

I make my own GUI see here but system is taking too much resources on further looking into the issue i have found that java pumpevents method is talking too much time. Any resolutions ???? pump ...
0
votes
2answers
313 views

Trouble with NativeWindow constructed in a thread context

I'm creating a NativeWindow subclass ('MyNativeWindow') in order to use its message pump to communicate with some old DLL. My code runs inside a WinForms application, but I'd like to keep the DLL and ...