Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

19
votes
9answers
17k views

How to handle WndProc messages in WPF?

Finding WPF a steep learning curve. In good ol' Windows Forms, I'd just override WndProc, and start handling messages as they came in. Can someone show me an example of how to achieve the same ...
7
votes
8answers
2k views

Best method for storing this pointer for use in WndProc

I'm interested to know the best / common way of storing a this pointer for use in the WndProc. I know of several approaches, but each as I understand it have their own drawbacks. My questions are: ...
5
votes
2answers
2k views

How to receive the Windows messages without a windows form

I am trying to write a class library that can catch the windows messages to notify me if a device has been attached or removed. Normally, in a windows forms app I would just override the WndProc ...
4
votes
2answers
63 views

How could a Delphi 6 TWinControl descendant's WndProc() execute sometimes off the main VCL thread?

I have a Delphi 6 application that is heavily multithreaded. I have a component I created that descends from TWinControl. When I first built it, I used a hidden window and it's WndProc to handle ...
4
votes
1answer
281 views

Does the Message to WndProc change value from 32Bit OS to 64Bit OS?

When the following Method is overrided in .NET it seems that I get different Messages in 32Bit and 64Bit OS:es. Can this be true? protected override void WndProc(ref Message m) I want to catch the ...
3
votes
1answer
281 views

How to catch a Lua exception in C#

I am using the an assembly named LuaInterface to run lua-code inside my C# application. During the lua execution I create some WinForms & map event handlers (lua-methods) to them. The problem is ...
3
votes
2answers
1k views

Intercept single or double mouse click - only execute double click code on double click

I have a situation where I am handling both single & double mouse click events on a form. In both cases something has to be loaded, however when a double click occurs, I do not wish to execute ...
3
votes
1answer
337 views

Execution difference between “App.exe” and “App.vshost.exe” with WndProc

I am attempting to adapt an application developed in VS 2008/C# that listens to another application's WM_ messages through the use of the Control.WndProc method. When the "app.exe" version is run, ...
3
votes
2answers
628 views

C#: How to drag a from by the form and it's controls?

I use following code to drag borderless form by clicking and dragging the form itself. It works, but it doesn't for when you click and drag a control located on the form. I need to be able to drag it ...
3
votes
3answers
2k views

C# Form Control Move

Is there anyway to control where you can move a form? So if i move a form, it can only be moved on the vertical axis and when i try to move it horizontally, nothing happens. I dont want a buggy ...
2
votes
3answers
423 views

WndProc: How to get window messages when form is minimized

To communicate with a certain service, I have to override the WindProc. and receive window messages. However, when the form is minimized, I get no longer any message. I know that it has to be like ...
2
votes
2answers
822 views

Overriding .NET WebBrowsers WndProc

For one of my projects, i'm overriding a AXShockwaveFlash control to disable right click and i can manage it using the following code; public class FlashPlayer : ...
2
votes
3answers
524 views

Why would Windows hooks not receive certain messages?

Microsoft does not recommend DirectInput for keyboard and mouse input. As such, I've written an input manager class that uses SetWindowsHookEx to hook into WndProc and GetMsg. I believe the hooks are ...
2
votes
2answers
307 views

Get the coordinates of a WM_NCHITTEST message?

How do I get the coordinates of a WM_NCHITTEST message in C# code? I'd love to get the fastest way, because performance is a requirement.
2
votes
1answer
428 views

Which messages are processed by DefWindowProc?

is there any documentation which messages are processed by DefWindowProc, and how? I recently stumbled over WM_SETFONT/WM_GETFONT not being handled, I'm not sure if there's a mistake in my code, or ...
2
votes
1answer
441 views

Strange WndProc bug in .Net. VB.Net more specifically

ETA: I use visual studio 2008 express edition. If I override WndProc and mess up somehow, I'll usually backtrack by commenting out code until it works again. The strange thing with WndProc though is ...
2
votes
1answer
856 views

Delphi - WndProc() in thread never called

I had code that worked fine when running in the context of the main VCL thread. This code allocated it's own WndProc() in order to handle SendMessage() calls. I am now trying to move it to a ...
2
votes
3answers
819 views

Transferring Win32 API WndProc Key messages from one window to the other

I'm developing for Windows Mobile in C++, and I'm running into a problem - I added my window class, and in it I the keyboard input with my WndProc implementation. The problem is that I'm getting the ...
2
votes
2answers
608 views

Use of WndProc for my C#.net app

I would like to know, if I use WndProc in my C#.net app to handle minimize event in my form, will there be any problem if my app will be installed in different version of windows or other platform? ...
2
votes
2answers
1k views

WebBrowser control: how to suppress message: do you want to close this window

I'm new to WebBrowser control. In the current project, we use WebBrowser control to integrate with existing project. All popup windows are displayed in a new windows form. When "javascript ...
2
votes
1answer
2k views

Handling System Shutdown in WPF

How can I override WndProc in WPF? When my window close, I try to check if the file i'm using was modified, if so, I have to promt the user for "Do you want to save changes?" message, then close the ...
2
votes
4answers
2k views

C# Form Move Stopped Event

Is there any event in C# that fires when the form STOPS being moved. Not while its moving. If there is no event for it, is there a way of doing it with WndProc?
2
votes
2answers
744 views

WM_NOTIFY and superclass chaining issue in Win32

For reference I'm using the window superclass method outlined in this article. The specific issue occurs if I want to handle WM_NOTIFY messages (i.e. for custom drawing) from the base control in the ...
2
votes
1answer
869 views

Is there a .NET namespace where I can find the WIN32 API message-related #defines, like WM_COMMAND, etc

I'm overriding WndProc, so I want to write code like if (m.Msg == WM_COMMAND) my special stuff else base.WndProc(ref m)
2
votes
7answers
13k views

How to draw custom button in Window Titlebar with Windows Forms?

How do you draw a custom button next to the minimize, maximize and close buttons within the Titlebar of the Form? I know you need to use Win32 API calls and override the WndProc procedure, but I ...
1
vote
1answer
40 views

How to wrap a win32 WndProc into a C++ class?

Is this even possible? For example, let's say I have the following: class Window { private: WNDCLASSEX wc; public: inline WNDCLASSEX getWindowClass() { return wc; } Window(); ...
1
vote
1answer
95 views

How to check when the control is fully initialized?

How can I check if the control is fully initialized ? Consider the following code (I know it's very bad practice to do this, please take it as an example) type TForm1 = class(TForm) Memo1: ...
1
vote
3answers
76 views

ToolStripDropDownButton - changing dropdown behavior with Esc key

I have a custom control with a ToolStripDropDownButton. The ToolStripDropDownButton has a number of toolstrip items (specifically, a custom toolstrip items which are checkboxes). A user can select ...
1
vote
2answers
68 views

Close callback or WM_CLOSE from a HWND reference

I'm calling the HtmlHelpA winapi method to display the .chm of my app. This method returns a HWND immediatelly, and the help window is shown as a separate window. Along with the window, I set a timer ...
1
vote
2answers
55 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
1answer
46 views

Trying to understand what's really happening in a C# WinForms WndProc method when handling hotkey messages

I have been working on a C# WinForms application that registers several hot keys using the well-discussed GlobalAddAtom and RegisterHotKey PInvoke methods. The program starts in minimized mode and ...
1
vote
2answers
143 views

WndProc, how to catch all buttons press?

I am developing an application for a .NET CF3.5 WM6.1 device with a barcode reader and want to catch all buttons (F1, 1, scanner buttons) click on a device. Especially I am interested how to catch ...
1
vote
4answers
138 views

sending lparam as a pointer to class, and use it in WndProc()

i have this abstract code : i want to use lParam (last parameter) in CreateWindowEx() to save a pointer to a class thats declared in the begining of main - SaveArr. then, i want to use it in the ...
1
vote
1answer
238 views

Catch windows shutdown event in a wpf application

I have a c# WPF application that needs to save data when it closes. The Window Closing/Closed events work fine if the user closes the program, but they do not get called if the user logs off/shutdown ...
1
vote
3answers
246 views

WPF: Close a secondary window when application shutdown without “programmer” intervention

It's quite hard to explain this in the title, if someone would like to change it it's ok. I have a situation where, in WPF, I create an "hidden" window which is transparent to the programmer. What I ...
1
vote
1answer
260 views

Win32 Capturing child Window messages in parent window

In my Win32 application, a child window is created by a third party SDK.The Window creation process is transparent and I cannot associate a WndProc method with the child Window. I want to be able to ...
1
vote
0answers
67 views

Comunication between 2 processes using messages

Started here but still the question not closed - I think that I need to revise the whole architecture - so please give your opinions... Here is the how the application should work: An scheduler ...
1
vote
1answer
134 views

Return an IOleCommandTarget from processing WM_GETOBJECT in a NativeWindow

I am trying to retrieve an IOleCommandTarget reference from a panel control handle, so that I can call IOleCommandTarget.Exec() on it. NativeMethods.IOleCommandTarget target = null; if ...
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
426 views

How to use WndProc?

How to use WndProc Funection for a picturebox in my form ? i try it like this code but it not work and not any message send to my public: virtual void WndProc( Message% m ) namespace MyProject { ...
1
vote
1answer
343 views

Java JNA WindowProc JVM Crash

In a previous question I wanted to implement the WndProc to handle the WM_DEVICECHANGE message in order to know when my USB device is attached or detached. I managed to solve this issue, but .... in ...
1
vote
3answers
810 views

JAVA JNA WindowProc implementation

I'm trying to write a simple application in Java that will communicate with an USB device. The USB device is made by me using a Microchip Microcontroller. The communication is rather simple, since the ...
1
vote
3answers
382 views

What message causes a button to send a WM_COMMAND message

I know that a Button, when clicked, sends the WM_COMMAND message to it's parent, but what message does it receive that makes it send this message? I am overriding the default WndProc of a button and ...
1
vote
1answer
560 views

Create a native Windows window in JNA and some GetWindowLong with GWL_WNDPROC

Good day, I have been using JNA for a while to interact with the Windows API and now I am stuck when creating a window. As far as I have done the following: 1. Have created a child window of an ...
1
vote
1answer
120 views

Why all the event checks in the ButtonBase WndProc method, .Net WinForms

I'm creating a base class for a button that inherits from Control as opposed to ButtonBase. I'm using reflector to look at ButtonBase to make sure I don't overlook anything important and I'm puzzled ...
1
vote
2answers
333 views

Delphi 6 : breakpoint triggered on non-VCL thread stops main thread repaints

I have a multi-threaded Delphi 6 Pro application that I am currently working on heavily. If I set a breakpoint on any code that runs in the context of the Main thread (VCL thread) I don't have any ...
1
vote
1answer
291 views

How to handle Win+Shift+LEft/Right on Win7 with custom WM_GETMINMAXINFO logic?

I have a custom windows implementation in a WPF app that hooks WM_GETMINMAXINFO as follows: private void MaximiseWithTaskbar(System.IntPtr hwnd, System.IntPtr lParam) { MINMAXINFO mmi ...
1
vote
2answers
819 views

If I send a WM_KEYDOWN message (using wndproc) will the computer hold the key down until I send WM_KEYUP?

I am looking for a solution to programmatically hold a keyboard key down during some time (I don't know how many time). I think that if I send a WM_KEYDOWN message the key will be held down until ...
1
vote
1answer
410 views

Finding WndProc Address

How can I find the address of a WndProc (of a window of another process). Even if I inject a DLL and try to find it with either GetClassInfoEx() or GetWindowLong() or GetWindowLongPtr() I always get ...
1
vote
3answers
4k views

How do I send/receive windows messages between VB6 and c#?

I know I can receive messages with the code below in c#, how do I send to vb6, and receive in vb6, and send from vb6? ...

1 2