Questions tagged [stayontop]

anything related to programming a function that a user would like to be non-scrollable and stay put on top of website, app, program etcetera

24 questions
10
votes
2 answers

"Stay on top" main form and modal dialogs in Delphi XE

In Delphi XE Update 1, I’m getting seemingly random behavior of modal forms if the parent (main) form’s FormStyle is set to fsStayOnTop. 1) With MainFormOnTaskbar := False (the old way), everything “just works”. With the new MainFormOnTaskbar :=…
Marek Jedliński
  • 7,088
  • 11
  • 47
  • 57
9
votes
1 answer

How to show a modal form on top of its owner form (its owner is set to fsStayOnTop or not), just as TOpenDialog does

Summarization: Please see the helpful comments below from Craig and Sertac. ====================================================== As shown in the following minimized code, TForm10 is set to be fsStayOnTop. TForm10.btnTryDlgClick call…
SOUser
  • 3,802
  • 5
  • 33
  • 63
9
votes
2 answers

Creating a transparent overlay with qt

I've been learning python recently and now I wanted to (try to) create my first real application, a subtitle player for Linux. So far I've been using the Greenfish subtitle player, which is aimed at Windows users and not properly working in Linux.…
troubled_sloth
  • 95
  • 1
  • 1
  • 5
7
votes
1 answer

How Can I Keep the FindDialog from Staying on Top (Delphi)?

In Delphi 2009, I do a simple: FindDialog.Execute; The FindDialog window stays on top of my program's main window as it should. However, if I open another window from some other program over my own program's window, the FindDialog window remains on…
lkessler
  • 19,819
  • 36
  • 132
  • 203
6
votes
4 answers

PyQt4 : How can i toggle the "Stay On Top" behavior?

I want to create an app, where the user will decide it the main window will stay always on top of the other apps. In PyQt4 it is easy to create a window that will stay always on top. This is covered here : PyQt: Always on top What I want to have a…
pmav99
  • 1,909
  • 2
  • 20
  • 27
6
votes
4 answers

Modal forms hidden by fsStayOnTop forms

I have a form (TBigForm in the example below) which allows to manipulate some complex data and needs additional information to be shown. I put this info in a fsStayOnTop form (OnTopForm in the example) to ensure it's always visible but can be moved…
Uli Gerhardt
  • 13,748
  • 1
  • 45
  • 83
4
votes
0 answers

QT application stay on top on windows 10

QMainWindow::setWindowFlags(Qt::WindowStaysOnTopHint) works on all versions of Windows except for Windows 10. On Windows 10, user can switch desktop using short-cut key: Windows + Tab, and create a new desktop. Thus the user can leave the Qt…
xhsoldier
  • 575
  • 6
  • 31
4
votes
3 answers

Delphi fsStayOnTop oddity

Here is the deal. Main form set to fsNormal. This main form is maximized full screen with a floating toolbar. Toolbar is normal form with style set to fsStayOnTop. Most fo the time this works as expected. The mainform displays and the toolbar…
TallGuy
  • 41
  • 1
  • 2
4
votes
1 answer

Selenium: How to stop the browser window getting on-top for every get?

Everytime I do a get, for a in al: browser.get(a) ... the window of the browser gets on-top and I cannot do other things on the computer. I am using python, Chrome driver and Windows 7. How can I make the browser to stay in…
Eduard Florinescu
  • 16,747
  • 28
  • 113
  • 179
4
votes
1 answer

Showing an interactive floating layout during calls

Background There are some nice apps out there that show some layout on top , while the user is making a call or answering one (like "current caller id"). I need to create an app with the ability to show something on top , during a call, and allow it…
android developer
  • 114,585
  • 152
  • 739
  • 1,270
2
votes
1 answer

Bring VB.Net window on top of all windows

I have a window which should stay on top of Power point slide shows. So it should be on top of all the windows. I did this easily using VB 6 using Lib "user32", but it seems to be difficut with VB.net. Me.TopMost = True This does not seem to work…
manjulapra
  • 85
  • 1
  • 2
  • 9
2
votes
2 answers

Controls on top, like TPanel can do?

My program is doing a time consuming task, and I would like to display a TImage in the middle of the application window, but it will not stay on top - my VST is always on top. However, when I use a TPanel, it stays on top? How can I make my TImage…
Jeff
  • 12,085
  • 12
  • 82
  • 152
1
vote
1 answer

Delphi TColorDialog Opens behind a stayOnTop form

I have a main form (form1) that calls form2 which is a stayontop form. form2 calls a modal form (form3) which is also a stayontop form. when form3 modal form calls the colordialog, the color dialog opens behind form3. What to set to open color…
user474079
  • 65
  • 2
  • 6
1
vote
1 answer

How to keep a child form on top of everything, but the parent doesn't have to be?

I have seen a few postings that are similar to this question, but this has a subtle difference. I have a program, the user interface of which can sit behind other programs, but it has a child form that is displayed in the top left corner that…
TrevorH
  • 49
  • 4
0
votes
1 answer

I cannot find always on top option in powerToys

I want to make VS Code always stay on top by PowerToys, but this option is not there! Can you help me, please? I tried other applications, but I want to use PowerToys.
1
2