Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
2answers
4k 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 ...
4
votes
2answers
310 views

How to use Win32 GetMonitorInfo() in .NET c#?

I have to implement a feature where the last position of the window is saved. When the application starts up this position needs to be obtained and restored. Now it could be that a second monitor is ...
4
votes
2answers
713 views

How do I get the active ChildWindow of an application?

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 child ...
4
votes
3answers
1k views

How to determine if the Caps Lock is toggled in a Silverlight Application?

In a Silverlight application's log in screen, i need to determine if Caps Lock is toggled. This is easy enough by handling the KeyUp or KeyDown event, however how does one determine if it is toggled ...
4
votes
3answers
1k views

Swapping left and right mouse button in .NET

How do I swap left and right mouse buttons in .NET (preferably C#)? Basically the result should be the same as if the user checked the "Switch primary and secondary buttons" checkbox in the Mouse ...
4
votes
2answers
901 views

User32 API calls in .NET

I'm currently planning out a project involving creating a shell replacement for Windows (based on Blackbox, bblean specifically). However I wish to leverage the power of .NET to do so. Many of the ...
3
votes
2answers
1k views

How do I get the active ChildWindow of an application?

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 this. The ...
2
votes
2answers
44 views

Why isn't my simulated mouse click doing anything?

I've got this code: [DllImport("user32.dll")] static extern void mouse_event(uint dwFlags, uint dx, uint dy, uint dwData, UIntPtr dwExtraInfo); [Flags] public enum MouseEventFlags { Move = ...
2
votes
2answers
147 views

Use a window handle as an owner for a VB6 form

What is the Win32 equivalant of Form2.Show vbModeless, Form1 that allows me to set the owner (not the parent) to an arbitrary hWnd and set the default position, etc? As far as I'm aware, this can only ...
2
votes
1answer
507 views

How to add a custom button to windows' minimize/maximize/close (x)

I was wondering if there is a way to add (programatically, of course) an icon/button/whatever besides plain text to a window (Microsoft Windows window...)'s title bar or next to where the ...
2
votes
2answers
322 views

use user32.dll in win ce5.0

I am trying to use sendmessage of user32.dll in an embedded windows ce5.0 computer the same simple program that I made only for testing the user32 in embedded is working on my windows xp computer. the ...
2
votes
1answer
1k views

Capture Highlighted Text from any window using C#

How to read the highlighted/Selected Text from any window using c#. i tried 2 approaches. Send "^c" whenever user selects some thing. But in this case my clipboard is flooded with lots of ...
2
votes
1answer
609 views

An unhandled exception of type 'System.ExecutionEngineException' occurring When trying to read window from GetWindowText() of user32.dll

In my application, I am reading the text of a window for the same process. I am using GetWindowText of User32.dll. But when it tries to call the method, I am getting the exception "An unhandled ...
2
votes
1answer
268 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(); ...
2
votes
3answers
969 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 ...
2
votes
4answers
577 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 ...
2
votes
1answer
552 views

How to get the active window of a logged on user from a service

I am writing a C# service which has to retrieve information from the currently logged on user like the active window or the last mouse movement. I already learned that I can retrieve these information ...
1
vote
2answers
145 views

Get key pressed from other application C#

I would like to get the key pressed by user on other application. For example, in notepad, not the program itself. Here is my coding that using PostMessage method to continuously send key to notepad ...
1
vote
2answers
59 views

How Can I Check if a Window is an MDI Window?

I imagine there's some user32.dll call that I can use to verify if a window is an MDI window, like using DefMDIChildProc and seeing if it fails, but I wonder if there's any limitations to this, or if ...
1
vote
1answer
45 views

fail to get procees name (vb.net)

i wan to create a program that can get the application name i can start the program but cant get the program name <br/><br/> a = Process.Start("calc").Handle<br/> ...
1
vote
2answers
138 views

Making a DLL in VB.NET which I can use as DllImport

Can I make a DLL in VB.NET which I can use in VB.NET with the tag DllImport just like we import functions from "user32.dll"?
1
vote
3answers
804 views

C# hide taskbar in Windows 7

I am trying to hide the Windows 7 taskbar in C#. I looked at this post and this page, but after following all the instructions, I ended up with a plain black bar at the bottom. I ended up with a ...
1
vote
2answers
417 views

VB6: Get hWnd of a child control inside a 3rd Party control

I have a vb6 third party UpDown Control (let it be ControlX), with UISpy i could see that ControlX has 2 controls inside, one is a "ThunderRT6TextBox" the other is a "UpDown20WndClass". I am drawing ...
1
vote
1answer
52 views

Is there any way to “bind” to window data for all open windows?

I've written some interop code that utilizes user32.dll to enumerate the windows and add them to a List. WindowData is a local INotifyPropertyChanged class that stores window hWnd, title, Position, ...
1
vote
1answer
257 views

Making a WPF system context menu item toggleable

I have the following code, which adds an 'Always on Top' item to the system context menu as displayed on the window chrome. It works correctly, but I'd like it to display a check mark or similar to ...
1
vote
3answers
439 views

Need to activate a window

I have a situation like this. I have the window handle of an application. I need to activate it. I tried all these functions but is not working always.(most of the time , it doesn't work the first ...
1
vote
2answers
229 views

automating .NET applications

I'm trying to automate a hidden .NET application, with another .NET application (written in c#) using the easiest way possible. It's NOT for testing purposes, it's a way to fulfill the lack of ...
1
vote
1answer
154 views

Difficulties with p/invoke and EnumDisplaySettingsEx

I am attempting to retrieve information on all the various monitors (and their adapters) present on a system. So far, my attempts at using EnumDisplayDevices to list all the monitors has worked great ...
1
vote
2answers
310 views

Is there a native .NET method or equivalent to user32.dll's GetKeyboardState?

ANSWER: There isn't a natively managed equivalent for this method. However, a good example managed code API can be found over at pinvoke.net. Hi all I have an application that accepts a flag for ...
1
vote
2answers
267 views

Reset Taskbar Flash in C#

I have an application where the taskbar flashes if an event has occurred. This is working perfectly, and was relatively easy to implement using a Win32 API described below: ...
1
vote
1answer
1k views

Determine if a window is visible or not using C#

I have a Console / Form hybrid application in C#, and at the moment, i have to rely on user32.dll to show/hide the console window. But I can't seem to find a way in which i can determine if the ...
1
vote
4answers
2k views

WIn32 Help with SwitchToThisWindow, ShowWindow, and SetActiveWindow

I have a VB 6 MDI application. It responds to the depricated SwitchToThisWindow function, but not the ShowWindow and SetActiveWindow functions. I know ShowWindow and SetActiveWindow are declared ...
1
vote
2answers
279 views

Why does CreateWindowEx return 0

VB.NET 2008 Express Private Declare Function CreateWindowEx Lib "user32" Alias "CreateWindowExA" (ByVal dwExStyle As Integer, ByVal lpClassName As String, ByVal lpWindowName As String, ByVal dwStyle ...
1
vote
2answers
331 views

TranslateAccelerator return value

The message loop generated by class wizard often looks like while( GetMessage() ) { if( !TranslateAccelerator() ) { TranslateMessage(); DispatchMessage(); } } Whereas ...
1
vote
2answers
460 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 ...
1
vote
2answers
190 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 ...
1
vote
2answers
189 views

Automated Clicking Problem

I am coding up a program for automated testing which randomly clicks an open application window using various User32.dll library calls. My current problem is this, if a click would open a dialog, ...
1
vote
2answers
1k views

User32's ShowWindow doesn't act as expected

I am using the ShowWindow method from User32 to hide a window (cmd.exe) from the user (mainly to prevent them from closing it). When the user opens the form, the process is started, and hid, then when ...
1
vote
3answers
1k views

How can I determine the current focused process name and version in C#

For example if I'm working on Visual Studio 2008, I want the values devenv and 2008 or 9. The version number is very important...
0
votes
2answers
52 views

Directing mouse events [DllImport(“user32.dll”)] click, double click

I tried [DllImport("user32.dll")] static extern bool SetCursorPos(int X, int Y); and it works pretty fine to move the cursor to the desired point. I have never tried such kind of a DLL import before ...
0
votes
2answers
65 views

Get input characters typed by the user(WINAPI, user32.dll)

I need to get an input point (caret position, window/control) that is focused. My application/service needs to detect when the user starts typing and then replace the characters that were typed with ...
0
votes
1answer
40 views

PInvokeStackImbalance when using GetAsyncKeyState in VB.NET 2010

What I'm trying to do is tracing Ctrl+Tab keypress on my main form using following code <DllImport("user32.dll", PreserveSig:=False)> Private Shared Function GetAsyncKeyState(ByVal vKey As ...
0
votes
1answer
76 views

Get second active window vb.net

I need to create a form where AlwaysOnTop = True when the browser is visible. This creates some sort over "overlay". The logic works like this: The program checks which window is active. If the ...
0
votes
0answers
48 views

How to change window focus without a window handle?

I have a process which has a window attached to it's process, but the MainWindowHandle property is always 0. (Specifically this is a Bloomberg Terminal Window). I'd like to have this window grab ...
0
votes
2answers
74 views

Find handle of a ActiveX user control inside IE

How can I programatically find the handle of a user control in a webpage running on IE? I'm able to find it using Spy++ but since the handle keeps changing I'm stuck. I've been trying using ...
0
votes
1answer
77 views

PostMessage to Current Active Proccess doesn't work for all proccess?

I have this code: const UInt32 WM_KEYDOWN = 0x0100; const int VK_DOWN = 0x28; const int VK_UP = 0x26; [DllImport("user32.dll")] static extern bool PostMessage(IntPtr hWnd, ...
0
votes
1answer
155 views

c# Maximize Window from System Tray

I am having trouble trying to bring my application window to the front (i.e on top of all other windows). I want the user to be able to double click the notifyIcon in the system tray, and If the ...
0
votes
5answers
197 views

C# Using PostMessage

I'm trying to send a key to an application. I tested the Handlewindow value used breakpoints to understand what I'm doing wirong but i cant find a solution. To be more detailed, its a little game and ...
0
votes
1answer
102 views

Can I retrieve the user32.dll getlastinputtime from a system service

I am trying to write a system service that can detect whether the user is active and then launch a process if not. I am using a service because I want this to work if the user is logged in or not. I ...
0
votes
0answers
148 views

c# registerhotkey and unregister in win 7 64

I have this problem: I made an app that needs to register an hotkey, I build the app with win xp and everything works fine, now I have this problem: the first time I launch the app I register an ...

1 2