Tagged Questions
-2
votes
2answers
46 views
WinApi - How To Prevent A Window From Opening
Can I forbid new windows to open on Windows ? I just want to prevent that another window steals my focus not even for a split second.
Is that possible ? And if yes how ?
// not sure if I can correct ...
-1
votes
0answers
25 views
Windows form not getting focus
In my application, i have to display a 'Login window' before loading the main application window. It is loading correctly, but the problem is it does not get the focus.
I have tried TopMost = true, ...
1
vote
0answers
75 views
Desktop application needs focus when user is in metro
I have a desktop application (non metro). I need to get the user back to my application Desktop in some emergency situations (could mean life or death). How do I get focus back onto my application if ...
2
votes
1answer
210 views
Disabling all Keys and Key-Combinations in JAVA
I want to disable the Windows-Key and all Windows-Key + X Combination while my Dialog is Visible.
CTRL + SHIFT + ESC and ALT + TAB should be disabled too.
Is this possible?
I Just want that my ...
1
vote
0answers
59 views
Windows LAF & ENTER as Focus Traversal Key
Alright so this is a weird one, since its working for other non-Windows PLAFs.
First of all, I'm setting my PLAF as:
UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
...
0
votes
0answers
71 views
Letting a Window believe it is still in focus although it is not
I have to deal with a nasty MS Windows application that quits doing its job as soon as it loses focus. My question is, how can I trick this application somehow to believe that it is still in focus, ...
1
vote
2answers
106 views
How to focus on last activated program?
If you are making windows form application and you have "Notepad" and "web browser" open ,How to Give Focus to the last one that had focus before your application got the focus?
0
votes
0answers
271 views
How can I keep two windows activated at the same time?
My question is simple:
On Windows, how can I keep focused or activated two windows at the same time ? ?
(normally, only one window is activated on the screen, the one where you navigate or click on ) ...
-1
votes
1answer
58 views
Visually indicating the active control (for controls that don’t show focus rect)
I’m writing a little Windows application which has two list-view-controls. I have set it up so that the user can tab (focus) between the two, but I need a way of visually indicating which is the ...
1
vote
1answer
410 views
Focus on MouseOver in Windows with Ogre3D
I have an application using the Ogre3D to create multiple render windows, and I'm using the solution posted here to support non-exclusive mouse input to these windows. However, I find that I have to ...
1
vote
2answers
186 views
Hiding form when are other controls focus
This question is related to this my question. Now I have form in my class and when user click on button I show (or hide) form. That´s ok. But I want to hide form when I move with origin form or when I ...
3
votes
1answer
912 views
How to run imagemagick in the background from python
How can you use imagemagick from python without opening a new command line window and losing focus?
This loop show the problem; the system becomes unusable while working on images because you lose ...
2
votes
1answer
463 views
How to make a VB.net 2008 app steal focus on Windows 7?
I'm trying to create an application in VB.net that can come to the front once a certain condition occurs (in this case, a file being created). I've tried the following code, but it just results in the ...
3
votes
3answers
540 views
How do I find the program with the current focus?
How can I know which process has the current focus?
Edit: Windows OS, anywhere from XP to 7
2
votes
1answer
129 views
Stopping another program from taking focus
I need to run a lengthy set of unit tests quite often each day, and as part of the tests, some windows pop up and are subsequently closed by the test script. Ideally, I'd like to continue working ...
1
vote
1answer
616 views
Focus a batch-started application
I am running a sequence of applications from a batch script and I want to make sure, that the opened program will always be in focus.
We need to ensure this because it's an experimental setup and we ...
1
vote
1answer
553 views
Combining CreateProcess and AllowSetForegroundWindow on WIN32
I have an application that is essentially a "helper" application that wraps another app.
The app that the user interacts with is a process that is created by the "helper" app like so:
...
0
votes
2answers
286 views
Problems creating a form in a jvPlugin dll and displaying it as a child of a control on the mail form
I'm trying to write a plugin system for my application based on jvPlugin. I create forms in the plugin dll, then reparent them into DevExpress docking controls. At first sight, it seems to work. The ...
0
votes
1answer
107 views
Detecting mouse clicks when another program has focus
This program works well when the left mouse button is pressed in the window of application, but what i need is that the program also registers when the button is pressed out of the application. I am ...
0
votes
3answers
706 views
How to set the scroll focus to specified control in c# windows app?
I have panel with the controls and scrolling .By default i set the focus to panel.(i need focus to panel by default)
if i scroll the panel to some where ,minimized the form and maximize it,it is ...
5
votes
1answer
785 views
Activate a form and process button click at the same time?
I'm using Windows Forms in C#.
I have a main form with a couple of toolbars that contain toolStripButtons. After working with another form that contains data, the main form loses focus and clicking on ...
0
votes
1answer
3k views
C# Stop Button From Gaining Focus on Click
I have several buttons that when clicked I don't want them to get focus nor do I want the space bar to 'press' them again.
I want the same functionality as the buttons in windows calculator.
...
0
votes
1answer
488 views
ACTIVE WINDOW - How to prevent title bar blue/grey change
I embedded a mode less property sheet in a dialog. I did not use a new window class for the control but did make the property sheet a child of a container in the dialog. Everything works fine except ...
1
vote
2answers
945 views
How to get back the focus of already opened window in C# Windows forms [closed]
I have a windows application. When I click on a button another process starts which pops up the help window. I only want to open 1 window. So if I click on the button I am checking if the process is ...
5
votes
1answer
250 views
Putting the focus on the tray icons in Windows XP using Python
I'm a Windows-XP-using keyboard devotee, and I want to bind Start-T to put the keyboard focus on the tray icon. (Because it'll be so much nicer than Start-B and then many Shift-Tabs.)
So I'd like to ...
0
votes
1answer
616 views
Jumping tab order using Control.Focus() when pressing Tab key (.net 3.5)
I have three text boxes:
<TextBox Name="textBox1" LostFocus="textBox1_LostFocus" />
<TextBox Name="textBox2" />
<TextBox Name="textBox3" />
With this event:
private void ...
0
votes
2answers
397 views
Using keybd_event
I have a simple program that does some 'typing' with keybd_event(). The problem is that when I focus the program window, any text box where I want to type (e.g. in a browser) becomes unfocused. How do ...
0
votes
2answers
87 views
kbd_event not correct work on some GDIs
I am trying to send key to IE address bar. I open web page on IE but when I send key to that it removes previous content of address bar.
How to send string to IE address bar or search box ?
1
vote
2answers
4k views
C# detecting key event in all windows
Hey, i have some problem with key event handler. This is source:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using ...
0
votes
1answer
524 views
Catching “global hotkeys” (Windows)
Now I've been trying to create a similar functionality as there is in Push-To-Talk voice chat applications, but so far I couldn't find any fitting solutions to this. I am not using MFC or CLR.
The ...
0
votes
2answers
335 views
How can I prevent a window from being deactivated?
Is there any way to prevent a window from being deactivated? The window is in a different process then mine.
This is for Windows.
0
votes
1answer
598 views
MFC OnMouseActivate: Where is focus if you eat the mouse event?
Where does focus remain?
Is focus left on the window that previously held focus, or is focus in limbo, on no window?
I've noticed that when I eat a message, it appears as if nothing has focus.
I ...
1
vote
1answer
192 views
Click lost on focusing form
Question:
Is there a way to always let a click, that brings a form in to focus, through an have effect on the form?
Background:
With my (C# win form) application out of focus I can hover the form and ...
0
votes
1answer
52 views
Assign shortcuts to arbitrary windows in order to quickly focus it
While programming I enjoy the benefits of a multi-monitor setup using Windows 7. My desktop is usually inhabited by two editor windows, several console windows and a browser (so that I can ask ...
0
votes
1answer
176 views
Process sleep when form loses focus
While writing a server application with a windows form for a GUI a problem appeared. When a form loses focus the process sleep, so any networking will not work unless the form is in focus the whole ...
0
votes
2answers
214 views
C++ subclassing a form to trap F1 - F12 keys
The main form opens a child form that has a handful of button CONTROLs on it. I need to trap keyboard events so I subclassed one of the controls. All is good until the control loses focus of course.
...
0
votes
1answer
546 views
How to start a virtual keyboard without loosing focus in WinXP?
I need to start a virtual keyboard (namely click-n-type) from my application to allow user input in the active field. When the user focuses on an edit box in my application's window, the virtual ...
0
votes
1answer
646 views
How can i prevent a CWnd from getting the focus?
I write a MFC application and need a button which is not taling the input focus away from another window.
Removing the WS_TABSTOP style does unfortunately not help when the use clicks the button with ...
2
votes
1answer
175 views
Some questions about focus on WPF
I've a little problem about focus on WPF.
I whant to create a window, always on top, and that never get the focus (even if we click on it).
Here's my solution :
public partial class SkinWindow : ...
4
votes
3answers
4k views
Is there a reliable way to activate / set focus to a window using C#?
I'm trying to find a reliable way to activate / set focus to a window of an external application using C#. Currently I'm attempting to achieve this using the following Windows API calls:
...
2
votes
2answers
415 views
Direct2D window black when not in focus
I have a Direct2D window which paints fine when in focus; however, when focus moves to another window (same application or another), the entire window goes black. I pinned the issue down to the use of ...
0
votes
1answer
171 views
Keyboard Tabbing Stops working on Windows GUI
I have a windows gui built in Microsoft Visual C++ and when the user performs a certain set of actions the keyboard tabbing to move from widget to widget stops working.
Simply put, there are two list ...
1
vote
1answer
903 views
Make a tkinter window appear over all other windows
#!/usr/bin/env python
# Display window with toDisplayText and timeOut of the window.
from Tkinter import *
def showNotification(notificationTimeout, textToDisplay):
## Create main window
...
0
votes
1answer
462 views
How to give an Exceed X-window focus in a C# application?
Currently our software is running on AIX Unix machines, but we use Windows boxes running Exceed to display the UI in X-windows. I'm writing a Windows application ( modernizing the UI in C# ), but ...
0
votes
1answer
878 views
How to create focused ImageButton in Windows Mobile application?
I have Windows Mobile 6.0 application. I have ImageButton control given by Microsoft.
I want my ImageButton control to have focus border like any standard button. How I can do it?
Thanks in advice!
3
votes
3answers
1k views
Multiple app windows activation not working correctly
I have a Delphi application that has a document browser as the main form. When the user opens a document, we open an editor window. We want to have each editor with a button on the task bar, as well ...
0
votes
3answers
3k views
WPF focus textbox after Window is restored/activated from minimized state
I have a simple WPF application where user is able to minimize my application window.
After user restores Window from minimized state I need to set focus to certain TextBox.
If user before ...

