Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
18 views

How can I use the FilterFunction passed to Gdk.Window.AddFilter?

I need to intercept several events before they are delivered to the widget's standard handlers, so I've done this already: //Inside the definition of my custom widget protected override void ...
2
votes
1answer
522 views

Why does my IMessageFilter not always work?

I'm working on Word automation and to get rid of "Call was rejected by callee" / "the message filter indicated that the application is busy" errors I implemented an IMessageFilter. The messagefilter ...
1
vote
2answers
62 views

Howto disable filtering of a modal dialog's keypress events

I am running into a strange problem and seem to have to hunted down to the following root cause. Environment C# (.NET 2.0): My code is using some vendor's framework and at one time opens a modal ...
1
vote
3answers
665 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
539 views

PreFilterMessage is not called when hosting C# control within Internet Explorer

Here is a sample: 1. Create a class 'public class RichTextBoxEx : RichTextBox, IMessageFilter'. 2. Implement 'public bool PreFilterMessage(ref Message m)'. 3. Enter into edit mode of the control and ...
0
votes
0answers
20 views

Advanced message filter rules in Mozilla Thunderbird

The filter mechanism of Thunderbird is nice for simple things. But I want to do something like (If message contains xy or sender is yz) and status is read, move to trash The problem is, one filter ...
0
votes
0answers
47 views

Send a snap shot as an attachment in iMessage

We can send a photo as an attachment in mail using MFMessageComposer, I'd like to know if we could do the same thing with iMessage in iOS5. Thanks in advance.
0
votes
0answers
37 views

monitoring received iMessages

With iOS5 and iMessage, it would be great if I could interpret the text of an iMessage as a command, generated via siri voice from another iOS5 device. A direct Siri API would do the same thing, but ...
0
votes
1answer
158 views

Implementing Centralized Hotkey Handling/Processing

I'm working on a project where I need to implement customizable hotkeys across the application. There are a number of different forms and user controls that need to implement different subsets of ...
0
votes
1answer
578 views

WM_DESTROY, WM_CLOSE bypassing IMessageFilter

Below is my message filter: bool MyFilter::PreFilterMessage(Message %m){ switch(m.Msg){ case WM_CLOSE: case WM_DESTROY: case WM_NCDESTROY: case WM_QUIT: ...