The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
23 views

Handle a Window Message WMCOPY in WPF user control MVVM

I am working on a WPF application and following MVVM. I have 5 user controls. In one of my user control I need to handle a window message WMCOPY. How should I do that. Can WPF User control handle ...
1
vote
1answer
115 views

SetWindowsHookEx for WM_MOUSEWHEEL

I need a code example written in VB.NET to capture the mousewheel scrolling events outside the form using a low-level hook with user32.dll and WM_MOUSEWHEEL like said by Hans Passant answer in my ...
3
votes
1answer
72 views

How do I detect the addition of a new monitor?

I have a windowless program that handles some window management hotkeys. I'd like to provide features such as the ability to move a window between monitors. I've used EnumDisplayMonitors to ...
0
votes
0answers
57 views

Code needed to SendMessage using WM_USER for interprocess communication

OK, all you smart coders out there. I have been able to code a number of Visual Basic executable routines to do special things to control my home security system program, but have gotten stumped on ...
0
votes
1answer
39 views

Getting QWidget's Windows messages without subclassing it and reimplementing QWidget::winEvent

Is it possible to intercept QWidget's Win messages without reimplementing QWidget::winEvent? Is there something like installEventFilter but for Windows native messages?
1
vote
0answers
168 views

Canon SDK: Download latest picture taken by two devices to host

I'm writing an windows based application in Visual Studio 2010. My host PC is connected to two Canon EOS 600D. So far I managed two take a picture, download it directly (without a SD card) to the host ...
-1
votes
1answer
9 views

hp cue status+generic host process for+WMI+ serious error+system configuration utility+ALG pop-up messages [closed]

I have a desktop computer, with Windows XP. It has a very good performance since 4 years. But from a few days, some messages appeared and suddenly the computer restarts. and if it did't restart ...
0
votes
0answers
28 views

How to implement message handler in HotKey library class (For WPF and Forms applications)?

I want to write a library class that allows any of my WPF or Forms apps to register a hotkey. Users of the class would specify a key combination (with modifiers) and an event handler. HotKeys work by ...
1
vote
2answers
52 views

How to update a tab's contents after a TCM_SETCURSEL message

I'm trying to change a tab in a page control in another application's window using the WinAPI. I sent a TCM_SETCURSEL message to the page control, that did change the tab but didn't changed the tab ...
0
votes
2answers
83 views

Windows Messages Privileges

what are the windows messages privileges? In the Application 1, I posted a message to Application 2: PostMessage(handle, WM_LOCAL, 0, Integer(Lst)); In the Application 2, The Message ...
0
votes
1answer
90 views

The name 'WM_DEVICECHANGE' does not exist in the current context

I am trying to detect a usb arrival event . I tried to override wndproc() for getting my messages. But I am facing an error by windows messages. The error is : The name 'WM_DEVICECHANGE' does not ...
7
votes
1answer
378 views

Intercept mouse click from other program

I’m trying to intercept mouse clicks from another program. I’m making a plugin for the program, that overlays a transparent form on the program and displays additional information. When I click on the ...
0
votes
2answers
103 views

how to make FindText dialog put its messages onto main loop?

I have registered FINDMSGSTRINGW but it doesn't show on the main loop: #include <windows.h> #include <iostream> int main() { using namespace std; UINT uFindReplaceMsg = ...
2
votes
2answers
114 views

Receive Windows Messages in a Service

I have written a service in VC++. I followed the tutorial here. Now, I am trying to find out how to receive messages like DBT_DEVICEARRIVAL, DBT_DEVICEREMOVECOMPLETE, WM_COPYDATA etc., just like a ...
2
votes
1answer
183 views

C#.Net Windows Message to Delphi

I'm having a trouble with Windows Messages between a c# app and delphi app. I did some examples with c# to c# and delphi to delphi but I cannot c# to delphi Here is my related c# app which is WM ...
0
votes
1answer
149 views

Adding a button to form prevents WM_KEYDOWN messages from being sent

The following code works and will print to Label1 when the user presses the a key on the keyboard: Public Class Form1 Sub New() InitializeComponent() End Sub Public Declare Function ...
0
votes
3answers
139 views

How can I listen to mouse events of other processes

Is it possible in C# to listen to mouse related windows messages sent to other windows in other processes?
0
votes
2answers
147 views

how to detect if ctrl key is pressed when child window ie. richedit is in focus?

I noticed that RichEdit does not send messages to parent window when CTRL key is pressed when the control is in focus. When parent window is active then all goes ok. But when cursor is in RichEdit ...
0
votes
1answer
93 views

Can someone explain the use of messages in Windows Programming? [closed]

I'm currently doing a module at university on AI and Physics and we have been given a structure to build our ai and physic engines in. I've done C++ before, I have about a semesters worth of ...
1
vote
1answer
94 views

How to stop the automatic scrolling of a Memo control?

In Windows 7, a memo control (TMemo) will scroll automatically after text is insterted (Memo.Lines.Add(Path);), which I do not want, because scrolling is done by myself. How can I stop the automatic ...
1
vote
0answers
99 views

Mouse move message for child window are intercepted by parent, how to get them in child window's callback

I was writing an plugin of Adobe Illustrator. The Illustator UI has many non-modal dialogs (floating panels) in main window. I want to deal with the WM_MOUSEMOVE message of one panel. So I find the ...
0
votes
1answer
330 views

EndDialog vs DestroyWindow

HI I am create a mimic of the Windows Context menu. Show dialog does the follow: creates a dialog using CreateDialogIndirectParam runs a message loop: while ( ContinueModal() && ...
0
votes
0answers
20 views

Second ButtonDown message not sent when double clicking

In my program I noticed that when I double click I don't get the second WM_BUTTONDOWN message. I just get the first WM_BUTTONDOWN and then two WM_BUTTONUP messages. I was able to verify this with ...
3
votes
3answers
510 views

How can a control receive mouse events after the mouse is dragged beyond its borders?

I'm creating a custom control which recognizes when the mouse is dragging, specifically using messages WM_LBUTTONDOWN, WM_LBUTTONUP, and WM_MOUSEMOVE. When the mouse goes down, I capture the position ...
0
votes
0answers
55 views

Handling WM messages to child

I am developing a Windows Form which contains a ListBox. Another application, running in the background sends WM_HSCROLL to the current active application which is the one i am working on. The ...
0
votes
3answers
2k views

VB.NET Send Tab key to another application window

I want to send "{TAB}" Key to another application window(send the key to the window not to textbox). I tried: SendMessage(hWnd, WM_SETHOTKEY, VK_TAB, 0) Nothing happened. my goal is: send tab ...
0
votes
0answers
74 views

AttachThreadInput(): preventing attached application from quit

I'm attaching my application to another process using SetParent, AttachThreadInput to display my window. When the "host " application I'm attached to is closing, my process gets closed, too. What are ...
0
votes
0answers
97 views

How to fix “The queue handle is stale and should be closed?”

On Windows Server 2003, we back up messages in Windows message queue once a week using the following batch commands (http://technet.microsoft.com/en-us/library/cc773213%28v=ws.10%29.aspx): cd ...
0
votes
0answers
191 views

Windows: SetParent, AttachThreadInput and SendMessage combination cause window switching [closed]

I'm trying to beat a strange random bug. An application is intended to react to certain Windows message by embedding itself into other application via SetParent, AttachThreadInput (bad practice, yes). ...
0
votes
0answers
101 views

Change in Windows 8 WindowsMessages?

We have a .NET application with a Grid. When we start it on a Tablet with Windows 8, and then swipe, it doesn't end up scrolling the Grid. I assume that the Windows messages for swipe have changed ...
1
vote
2answers
497 views

Intercepting hint event on delphi

I am trying to change hint text temporarily at a run-time inside of a component, without changing the Hint property itself. I've tried catching CM_SHOWHINT, but this event seems to only come to form, ...
0
votes
1answer
223 views

WH_MOUSE_LL hook, avoid getting useless WM_MOUSEMOVE events

Is there a way, even a dirty hack, to avoid receiving WM_MOUSEMOVE events in a WH_MOUSE_LL hook? I'm interested only in wheel rotations and buttons. The performance cost of receiving WM_MOUSEMOVE is ...
0
votes
0answers
122 views

Windows Proc “Unavailable” for processes spawned by service

I'm attempting to use psexec to spawn a process on a remote machine (for automated testing purposes) and noticed that the spawned process wasn't correctly responding to a message (WM_GETOBJECT, but ...
2
votes
3answers
445 views

How does this AHK script work?

The following AHK script automatically brings up the menu that you would normally get when you right-click on the uTorrent icon in the system task-bar tray: DetectHiddenWindows, On Process, Exist, ...
0
votes
0answers
142 views

Sending WM messages to web browser input

I have here a web browser (OpenWebKitSharp) that goes to a chat room. I'm writing a bot that's very similar to an IRC bot. However, the input field has no submit form or button. Text is only sent by ...
1
vote
1answer
379 views

Taskbar right click application context menu for windows vista and higher

I need to know the code for taskbar right click application context menu for windows vista and higher in C#. For older versions of windows this code is 0x313. In vista and higher this code means shift ...
1
vote
1answer
324 views

MFC Button ToolTip not showing after button click

I am using MFC CToolTipCtrl for creating tooltip for a button. Now I have problem when I run the application in Windows XP.When I place mouse over the button,tooltip will popup but after clicking the ...
0
votes
2answers
160 views

Keep rendering a 3D window during modal dialogs/opening main menu?

(I use Ogre3D for the rendering but the question should be generic.) The problem: most 3D aplications use a cycle which iterates rendering a frame and checking for messages and processing them. ...
0
votes
0answers
240 views

GetDCEx Function not working correctly

I am currently working on a project where a custom non-cient area needs to be drawn. Here is part of my code: [DllImport("user32.dll")] public static extern bool ReleaseDC(IntPtr hWnd, IntPtr hDC); ...
1
vote
0answers
4k views

Using PostMessage/SendMessage to send keys to c# IE WebBrowser

I am trying to auto fill in values in the C# webbrowser control and tab and enter and press up and down to move through the fields. Here is my PInvoke and wrapper functions. I used Spy++ to get these ...
3
votes
1answer
250 views

Parent window not receiving window's messages (Key Events)

I have a GUI application that is written using win API's and we need to launch a new GUI application when the user selects some command menu items. We decided to write the new application in PyQt and ...
0
votes
1answer
130 views

WM_COMMAND not passed to main window

I would like to place an edit control (WC_EDIT) on a static control (WC_STATIC). Unfortunately, when I do that I don't receive any WM_COMMAND messages from the edit control in the windows callback ...
4
votes
1answer
236 views

How to recognize when number, position, or resolution of monitors has changed? [duplicate]

I'm building something which needs to detect when things change with the monitor configuration. This includes Monitor added/removed, Monitor position moved (compared to main screen), or when Monitor ...
5
votes
1answer
433 views

Mouse Enter/Leave messages not working?

I'm trying to detect mouse enter/leave messages CM_MOUSEENTER and CM_MOUSELEAVE but it isn't catching it. What am I doing wrong here? type TMyControl = class(TCustomControl) private procedure ...
3
votes
1answer
417 views

What message I receive when I kill my program with task manager

So I have a C++ dll, that I am using in my c# application, for monitoring Windows Messages. I want to know if WM_CLOSE and WM_QUERYENDSESSION are send because I can't see that from a C# application. ...
1
vote
2answers
1k views

Capturing WndProc message of a certain button click

I have a cancel button on my form. I want to determine inside the WndProc method that this Cancel button is clicked and write some code for it. This is absolutely necessary because otherwise I'm not ...
2
votes
3answers
936 views

PostMessage to hidden form doesn't work the first time

I have a C# WinForms application that appears in the system tray. The application is hiding the main form on load: private void MainForm_Load(object sender, System.EventArgs e) { Hide(); } For ...
0
votes
2answers
1k views

Difference between WM_CLOSE and SC_CLOSE

I just want to know what is the difference between these two messaging constants. Which one should I use in WndProc method when overriding, to handle close button message.
1
vote
2answers
349 views

Low memory notifications in Windows CE

Is there a way to get notifications when the available memory goes below a certain limit (user configurable)? I have looked into the WM_HIBERNATE event but it seems the limit for this event is not ...
6
votes
2answers
236 views

There is any quick way to, while debuging, to stop at a specific Windows Message or API?

So I want to put a Breakpoint in a specific API or Windows message. I don't find any easy way to do that without writing code in any Delphi version. Is there a way to do that similar as I can put a ...

1 2 3