0
votes
2answers
36 views
TranslateAccelerator return value
The message loop generated by class wizard often looks like
while( GetMessage() )
{
if( !TranslateAccelerator() )
{
TranslateMessage();
DispatchMessage();
}
}
Whereas …
0
votes
2answers
99 views
System Wide Shell Hook from .NET using Unmanaged DLL
Hello everyone,
I have used the code supplied in the following CodeProject article in the past with success, but it only seems to partially work on Vista/7 (I'm guessing because of UAC). It works for …
0
votes
3answers
121 views
How to call user32.dll methods from javascript
Hello all,
I have a javascript running on a browser. Is it possible to call a function/method in user32.dll.
This is possible from C# by using pInvoke calls. How do I do the same in JavaScript?
…
3
votes
2answers
217 views
C# PInvoking user32.dll on a 64 bit system
Is it wrong to pinvoke user32.dll on 64 bit Windows, from a 64 bit app? I've done this successfully a number of times and never had an error, but it seems contradictory. Should I look for user64.dll …
0
votes
0answers
34 views
WPF Application fixed on Desktop - Opposite of topMost
Is there a possibility to "fix" the WPF application on the desktop (like Win7 Gadgets)?
I have found some code which achieves this on Win XP but it is not working on Win7. It uses the user32.dll.
…
2
votes
1answer
73 views
Better way to “dock” a third party running application inside a windows.forms panel?
I am currently doing this as follows:
// _Container is the panel that the program is to be displayed in.
System.Diagnostics.Process procTest = new System.Diagnostics.Process();
…
0
votes
3answers
80 views
How do I turn of WS_CAPTION style of a window (using user32.dll)?
I am embedding a 3rd party app into a panel on a c# windows form (using SetParent from user32.dll). I need to then turn off the title bar windows style (WS_CAPTION) so that it looks like a part of …
0
votes
2answers
88 views
Enable a control of another application with User32 (vb .net)
I was wondering if there was a function in user32 that could enable a hwnd control if it is disabled (grayed out) If I know the handle then can I do this? Also, if it is a menuitem, can it be done …
1
vote
2answers
84 views
GetIconInfo function not working properly
I have written an application which is getting the Icon info of current cursor using GetIconInfo function of user32.dll, It works fine for some time, but after some time it starts providing wrong …
0
votes
1answer
47 views
How do I hide the titlebar and lock the position on an exe (unmanaged code) that I have moved inside a panel in a c# form?
I have to "embed" an .exe within a panel in a .net windows form.
I am doing this using user32.dll SetParent to set the launched app's parent to the forms Panel handle.
Once this is done, I would like …
2
votes
2answers
149 views
Changing system colors for a single application (Windows, .NET)
I know I should generally avoid messing up with such system settings, but my application do already use nonstandard colors and I have no influence on that. I would like to be able to add standard .NET …
1
vote
5answers
239 views
How can I be notified when a new window is created on Win32?
Is there a way using Win32, to register for notifications when a new window is created. I'm trying to keep a list of current open windows, but am now just polling the list of current windows using …
1
vote
2answers
77 views
How to get minimized window’s RESTORED bounds?
It's easy to get the bounding rectangle for all the visible windows on a screen. It's also easy to tell if any window is iconic or not.
But for minimized windows, the Top and Left is reported as …
3
votes
2answers
174 views
How do I get the active ChildWindow of an application?
Hi,
I want to send a pressKey event to a certain application which is not the active application IN Windows so I have to use the sendMessage/postMessage api calls.
However, I need to know the exact …
1
vote
2answers
253 views
How do I get the active ChildWindow of an application?
Hi guys,
I have this problem: I have an handler to the mainWindow of a certain application, and I want to simulate a keypress on that application...
I'm using sendMessage/postMessage api calls to do …
