Questions tagged [topmost]

Topmost is a universal term describing the object that is displayed on top of the others. It is usually used in connection to windows in Desktop Environments.

Topmost as a term is used to describe object with the highest z-index value. The object can be either a window (in Desktop Environment) or a HTML Element (on websites). Unlike modal, topmost allows window switching and manipulations. An example of modal window is Window's Task Manager, which stays on top by design.

161 questions
0
votes
2 answers

SetWindowPostion TOPMOST

I am working with a software developer on a C Program that has a floating preferences window. If I use the Windows taskbar to switch to another program when mine is running, my floating window still resides over the program I switched to. I am not a…
emailcooke
  • 219
  • 1
  • 3
  • 15
0
votes
6 answers

Find modal number in array

I have array like this: int[] array = { 2, 4, 6, 8, -3, 8, 2, 7, 2, 4 }; I want to know which number is showing the most time (in this case its 2 of course), how can i do that?
0
votes
1 answer

Bringing a form window to the top of the application without being on top of all applications

I have a modeless singleton form that appears on a timer. If the application the form belongs to is the active application but the form is not on top, I want the form to be shown on top of all other windows of the application. It is up to the user…
bdx
  • 3,034
  • 4
  • 25
  • 56
0
votes
3 answers

focus lost after making another app's window topmost

I'm making another app's window topmost to ensure that a click in my app brings the other's dialog into views. The problem I'm having is that I don't get focus back to my app after the call. If the other app has more windows one of them ends up with…
Oskar
  • 2,184
  • 5
  • 25
  • 35
0
votes
1 answer

How to show FileSystem.DeleteFile dialog as top most or set the parent/owner?

When I call the following line, the dialog will show behind any floating dialogs, so I need to be able to set it to top most, or at least set the owner: FileSystem.DeleteFile(someString, UIOption.AllDialogs,…
jsirr13
  • 822
  • 2
  • 12
  • 35
0
votes
2 answers

Windows form always on top not working c#

I searched the forum but still no answers seems to be the right one. I need to show a message notification from a systray app while users are operating in a browser. I want this notification to be displayed on top of everything but even if I set it…
box_alex83
  • 21
  • 5
0
votes
0 answers

Different WMs and making windows topmost

I've implemented the code I found in another question, and I'm wondering why it works. This is the code that makes a Tkinter window topmost in mac, and then doesn't when it's idle (if that makes sense) root.lift() root.call('wm', 'attributes', '.',…
MPKenning
  • 537
  • 1
  • 6
  • 22
0
votes
2 answers

TOPMOST window in full-screen

I'm playing with a JFrame in Java. I want it to be the topmost window i.e. always on top. The setAlwaysOnTop() works fine, but as soon as I start a movie or a game-window in a full-screen mode then it fails to stay on top. I played around with JNI…
damo_inc
  • 643
  • 1
  • 9
  • 26
0
votes
1 answer

Showing a ChildForm on top, even when ParentForm is hidden

I have an application that’s running silently in the System Tray. Occasionally, I need it to pop-up a small notification form to the end-user. I’ve attempted to accomplish this w/ a WinForms application that has the bulk of its logic built into a…
WEFX
  • 7,709
  • 8
  • 59
  • 93
0
votes
1 answer

Calling Focus on textbox in window 'x' causes the window 'x ' to be top most

I have an application that takes user input, validates it, and either shows an error screen or continues to the next page. When an error is thrown it calls a static method and passes a resource key for the error message. This static method launches…
0
votes
2 answers

c# - Setting current window as the foreground window

How can we set the currently opened window an application as the foreground window? This scenario may be valid if, for example, you have to show the user another application until a condition is met, and then bring your application into his/her…
Valentin Radu
  • 589
  • 1
  • 8
  • 25
0
votes
1 answer

Call a Function although the form is Minimized or Unselected on KeyDown in VB.NET

Well I have this code: Public Sub FuncKeysModule(ByVal value As Keys) 'Check what function key is in a pressed state, and then perform the corresponding action. Select Case value Case Keys.F8 spam.Enabled = True …
Seazoux
  • 615
  • 1
  • 5
  • 28
0
votes
3 answers

VB6 - Add exception to TopMost

I have been searching this for few hours, but without proper results. What I want to do, is make an external window to topmost, over my form1. So my form1 is topmost, but when default browser is opened via shellexecute, it should stay on top, until…
user2404495
  • 195
  • 1
  • 6
  • 16
0
votes
2 answers

Button topmost in android

I have layer, it is transparent. I can click on button only, I want to click through layer. Here's my Manifest: Here's Transparent theme style:
The Badak
  • 1,912
  • 1
  • 12
  • 25
0
votes
1 answer

How to stop WPF TopMost flag on parent window from being inherited by the child

I have a WPF window that has TopMost=true . When I call another Window from this window and specify the topmost window as the parent the owned window also displays as TopMost. I would like to find a way to stop that from happening so that my parent…
Kelly
  • 6,187
  • 9
  • 51
  • 71
1 2 3
10
11