3
votes
3answers
600 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 …
3
votes
3answers
987 views
Detecting USB drive insertion and removal using windows service and c#
Looking into possibility of making an USB distributed application
that will autostart on insertion of an USB stick and shutdown when removing the stick
Will use .Net and C#.
Looking for suggestion …
2
votes
1answer
411 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
680 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:
…
1
vote
2answers
71 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 …
1
vote
2answers
254 views
WebBrowser control: how to suppress message: do you want to close this window
Hi, 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 …
1
vote
1answer
285 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 …
1
vote
1answer
258 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 …
1
vote
3answers
569 views
Concept of WNDCLASSEX, good programming habits and WndProc for system classes
I understand that the Windows API uses "classes", relying to the WNDCLASS/WNDCLASSEX structures.
I have successfully gone through windows API Hello World applications and understand that this class …
1
vote
7answers
2k 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 acheive the same …
1
vote
7answers
4k 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 …
0
votes
1answer
33 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 …
0
votes
0answers
7 views
Taskbar left click minimize the borderless winde.
Hi,
I want to know is there any WNDProc message which the form can handle left click or double click on the taskbar inorder to set windows state minimized.
Thanks,
Raj
0
votes
0answers
50 views
Transferring Win32 API WndProc Key messages from one window to the other OR keyboard problem with Windows Mobile Win32 API
Hi - I'm posting this question again - as i got some potentially useful comments on my question, but unfortunately when i replied to the comments i got no answers. It seems that unless i post the …
0
votes
4answers
90 views
Transferring Win32 API WndProc Key messages from one window to the other
Hello, I'm developing for Windows Mobile in C++, and i'm running into a problem - I added my window
class, and in it i handle the keyboard input with my WndProc implementation. The problem is
that i'm …
