The tag has no wiki summary.

learn more… | top users | synonyms

17
votes
2answers
228 views
+50

How can I stop my application from recieving a certain “message”?

POSSIBLE SOLUTION FOUND! I believe I have found a solution! I will be continuing testing to make sure it DOES in fact work, but I'm hopeful :) I have detailed how I found the solution in EDIT THREE ...
9
votes
2answers
301 views

Does C# have an equivalent of Delphi's message keyword?

In delphi, I can create my own message like this, const MY_MESSAGE = WM_USER+100; procedure MyMessage(var Msg: TMessage); message MY_MESSAGE; procedure TForm1.MyMessage(var Msg: TMessage); begin ...
6
votes
7answers
876 views

Preventing Windows shut down

To detect and prevent shutdown the computer I use very simple program. It has only one form and one private procedure like below: TForm3 = class(TForm) private procedure WMQueryEndSession(var Msg : ...
5
votes
3answers
325 views

How can a thread notify an object that doesn't have a window handle?

I'm new to multithreading, but not a complete novice. I need to perform a call to a webservice in a worker thread. In the main thread I have a form (TForm) with a private data member (private string) ...
5
votes
1answer
450 views

How can I make my console application receive window messages?

I need to write a message handler in my console application that handles received messages. For example, I register WM_Test and send it by to my console application like this: var H: THandle; begin ...
4
votes
2answers
246 views

Can I use my own message loop in windows?

I am building a C++ program, on windows, using Visual Studio. It relies on a COM base API, that sends windows message for notification. To process those messages, I see two possibilities: Create a ...
4
votes
1answer
492 views

Delphi - How do I Sending a windows message to TDataModule?

I need to send a windows message to a TDataModule in my Delphi 2010 app. I would like to use PostMessage(???.Handle, UM_LOG_ON_OFF, 0,0); Question: The TDataModule does not have a Handle. How I ...
4
votes
2answers
100 views

How to handle lifecycle of dynamically allocated data in Windows messages?

Simple task: Send a windows message with dynamically allocated data, e.g. an arbitrary length string. How would you manage the responsibility to free this data? The receiver(s) of the windows message ...
4
votes
1answer
90 views

Is there a such thing as a double right-click in Win32?

I haven't found anything mentioning a double right-click windows message but am curious if anybody knows of events that fire for a double right-click. Any ideas?
4
votes
2answers
79 views

Is there a windows message that I can hook for when an application starts?

I want to know whenever any application starts. Is there a windows message that I can set a hook for to know exactly when that happens?
3
votes
1answer
177 views

How Do I Find The Location A Message Was Sent From in Delphi?

I have a third party tree package (ElXTree by LMD Innovative) that I am using as a grid in my program. Whenever I select a cell, that row gains focus and becomes highlighted, just as I want it. When ...
3
votes
1answer
293 views

Should I free a Delphi object auto-instantiated from a web services call?

Newbie question: I have a forms application. It has a separate thread which makes a web services call, and then posts the results of the call to the main form. In my thread, after X seconds have ...
3
votes
4answers
962 views

Windows API: What is the first message a window is guaranteed to receive?

I've been used to thinking that WM_CREATE is the first message a window receives. However, when testing this assumption on a top-level window, it turns out to be false. In my test, WM_MINMAXINFO ...
2
votes
5answers
149 views

How do I catch certain events of a form from outside the form?

I'm working on something which will require monitoring of many forms. From outside the form, and without putting any code inside the form, I need to somehow capture events from these forms, most ...
2
votes
1answer
45 views

If no message in windows application message queue, then will message loop still continuously runs?

I have a doubt about windows message queue, and message loop. Could any one help me in understanding, or pls provide some reference links. If no message in windows application message queue, then ...
2
votes
2answers
47 views

Window Message Notification - Language and Locale

I want to find out what win message is / are sent when we change the locale settings, Date Time and Language in particular. I know when window Theme is changed we receive WM_THEMECHANGED.
2
votes
3answers
458 views

Problem with WM_ENDSESSION message

I have a problem with WM_ENDSESSION message. Namely I would like to exit from the main loop of the application (WindowProc) when the WM_ENDSESSION message is sending... So, I wrote something like ...
2
votes
1answer
334 views

How Imitate a [Ctrl+Left mouse click] on the center of the form or open another program and type in a word?

Babylon dictionary and a couple of other dictionaries allow to click on any word in any windows program and automatically recognize the word under the cursor, and at once open the dictionary window ...
2
votes
2answers
138 views

How to avoid WM_APP

I am writing a CFrameWnd wrapper and I have this line in the header file : #define WM_CFW_MESSAGE (WM_APP + 100) Is this is a good practice ? Does it require that users of this wrapper ...
2
votes
3answers
208 views

How can a child window respond to a change in its parent

In a Win32 app is there a Windows message or some other notification that will get sent to a child window when it is placed into a different parent
2
votes
2answers
871 views

Using WM_SHOWWINDOW to Show a Window instead of ShowWindow()

I’m trying to use the SendMessage function of a hotkey utility (or NirCMD, etc.) to get a hidden window to pop up. I can for example get windows to close by sending 0x0010 (WM_CLOSE), but when I try ...
2
votes
2answers
1k views

C# - Capturing Windows Messages from a specific application

I'm writing a C# application which needs to intercept Window Messages that another applications is sending out. The company who wrote the application I'm monitoring sent me some example code, however ...
2
votes
5answers
624 views

How can I receive mouse events when a wrapped control has set capture?

My WndProc isn't seeing mouse-up notifications when I click with a modifier key (shift or control) pressed. I see them without the modifier key, and I see mouse-down notifications with the modifier ...
2
votes
3answers
1k views

TService won’t process messages

I have created a windows service that uses Windows Messaging System. When I test the app from the debugger the Messages go through nicely but when I install it my messag … asked 14 mins ago vladimir ...
1
vote
3answers
76 views

WM_TIMER messages suppressed when clicking and holding the mouse over windows X button

I'm working on a game where the client needs to continue processing windows messages or else the game can be exploited. In order to solve this problem during window re-size and drag events, we have a ...
1
vote
1answer
73 views

How to handle Windows Messages

I'm trying to prevent a checkbox inside a ListView to get checked on a double click event. I already did: listView.SelectedItems[0].Checked = (listView.SelectedItems[0].Checked) ? false : true; ...
1
vote
1answer
41 views

Managed analogue for SendMessage API function or How to send a message to window from C#?

I want to send a window message from one application (console) to the wondow of another application. I can use WinAPI functions SendMessage or PostMessage, but may be there is managed way to do it?
1
vote
2answers
40 views

Get wm_windowmoving for a native windows app from C#

I need to watch an app written in c++ and know when it moves so my c# windows form app can move with it. I can poll the c++ app's position with a timer but want a better solution. How can I watch ...
1
vote
2answers
138 views

Holding Alt Button Using Windows Messages

How can I, with windows messages, Hold the ALT button? Is there a WM_KEYHOLD or anything like that? This is the code to screen shot but I guess something is missin. I think the key codes im using ...
1
vote
1answer
141 views

Get 30th bit of the lParam param in WM_KEYDOWN message

I need to get the 30th bit of the lParam param passed with the WM_KEYDOWN message. This bit as written here allows me to know if the key was pressed before. Is this code right to get it? (lParam ...
1
vote
2answers
298 views

EnumWindows and EnumChildWindows to keep my Treeview updated

I am trying to make a program similar to Winspector Spy. My problem is that I would like my Virtual Treeview to be updated at all times - that is, update it when a window is created, when a window is ...
1
vote
1answer
224 views

WM_POWERBROADCAST not received by message-only window in Windows XP

I'm trying to find out whether broadcast messages will be sent to message only windows, i.e. created as: hWnd = CreateWindow(MAKEINTATOM(RegisterClass(&wnd)), NULL, 0, 0, 0, 0, 0, 0, ...
1
vote
1answer
121 views

Issues while closing non modal dialogs in .net running on windows 7

Hello I've a simple c-sharp windows application. I have a button on this form which launches another non modal pop-up form (fixed tool window). Inside the pop-up form i keep tracking the windows ...
1
vote
2answers
61 views

How to find who generated a windows message

We have a very large, complex MFC application. For some reason a particular mode for running our application is generating WM_SIZE messages to the window. It should not be happening and is killing ...
1
vote
1answer
168 views

.NET CF on Windows CE - problem with filtering system messages

I'm trying to get every windows message that tells that the user has touched the screen. It works everywhere, except the button, when it is disabled. It seems that the application doesn't get any ...
1
vote
1answer
116 views

Win32: What is making my message loop work incorrectly in that example?

I recently ran into a situation where I wanted to use a modeless dialog in Win32's. Win32: Toolbar dialog seems to never get focus and causes the main window to process slow!? And I figured out that ...
1
vote
2answers
211 views

What's wrong with my character set (Win32 API)

I'm currently learning Win32 using this tutorial, and I have a hard time with my displayed characters. Take for instance this piece of code which adds a menu to my window upon creation: case ...
1
vote
1answer
436 views

WM_DEVICECHANGE Messages Are Not Sent to WndProc - C++

My application creates a window for the purpose of handling the WM_DEVICECHANGE Windows message. WndProc does get called several times, until my application calls a function to poll for keyboard ...
1
vote
2answers
396 views

Getting error id: 0 from Windows method: FindWindow

im trying to send a Windows message to my Delphi application, but im having problems with the FindWindow method: im getting error id of 0 from the GetLastError method. Im running Vista and from what ...
1
vote
1answer
624 views

how send data record using SendMessage(..) in separate process

i use to send a data on two separate process but it fails. it works only under same process... this is concept. //----------------------------------------------------------------------------------- ...
1
vote
3answers
167 views

How do I pass a struct (or class) message back and forth between a C# service and a separate VB 6 application?

I need to pass data between a c# service and a running vb 6 application, considering using Windows Messaging. How do I pass the data back and forth between a C# service and a running vb 6 ...
1
vote
1answer
300 views

Different RegisterWindowMessage() names appear the same

Using the C/C++ Windows API RegisterWindowMessage() I am using the name of the application as the message name. Next I call CreatMutex() using the same name so that I can tell if it already exists. ...
1
vote
2answers
91 views

Stealing the contents of another application's tree view

I have an application with a very large TreeView control in Java. I want to get the contents of the tree control in a list (just strings not a JList) of XPath-like elements of leaves only. Here's an ...
1
vote
3answers
522 views

How can I learn a multitouch screen's communication protocol and write a C# application for it?

I have got a monitor with multitouch overlay on top of it. It works fine with Windows 7 but I want to write a multitouch application in C# for Windows XP which doesn't support touch feature out of the ...
1
vote
3answers
350 views

How to send keypresses to a DirectX application?

I need to write a program in any programming language (preferably Delphi 7 / Delphi 10 / C#) that emulates pressing 1 every 10 seconds to a given process in Windows XP or Windows 7. Sending Windows ...
1
vote
1answer
354 views

Not receiving WM_PAINT message when returning from Security Screen (Ctrl+Alt+Del) in Windows7

I need to detect the closing of the security screen, this is the full screen that appears when a user presses Ctrl+Alt+Del under windows. In Xp my application receives an wm_paint message when this ...
1
vote
1answer
4k views

Get child window handles in C#

I'm starting a process in C# and then sending Windows messages to that process with SendMessage. Usually I send the messages to Process.MainWindowHandle, but in some instances I might need to find a ...
1
vote
5answers
1k views

Delphi custom message handlers

When a user double-clicks a dbgrid, I show a non-modal form. When they close that form, I want to refresh the grid. To accomplish that, I have tried the following: 1 - Define a custom message ...
1
vote
2answers
874 views

Looking for a program to view Windows messages

I am looking for a program to view Windows messages Can you help?
0
votes
2answers
27 views

Find out if a button is being held using Windows Messages

I have a program that uses windows messages to know if a button is being clicked or not : IntPtr GetMsg(int nCode, IntPtr wParam, IntPtr lParam) { if (nCode >= 0 && wParam == ...

1 2