Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
2answers
387 views

TopMost form in a thread?

I am using the following code to open a form in a new thread: private void button1_Click(object sender, EventArgs e) { Thread thread = new Thread(ThreadProc); thread.Start(); } public void ...
6
votes
2answers
2k views

WPF-Window Topmost for own application only?

The Splashscreen/Loading-Window in my WPF application is set to Topmost="True". Now this windows in on top of all other windows even when you switch to another application (because loading will take ...
5
votes
5answers
425 views

How can I build a Windows application that intercepts and passes through keystrokes and mouse clicks to other applications?

I'm working with a customer who wants to add functionality to a legacy application. The application, whose vendor is useless, has a Windows Forms UI. What my customer wants is for certain ...
5
votes
10answers
7k views

How to make a WPF window be on top of all other windows of my app (not system wide)?

I want my window to be on top of all other windows in my application only. If I set the TopMost property of a window, it becomes on top of all windows of all applications and I don't want that.
3
votes
2answers
953 views

Opening a WinForm with TopMost=true but not having it steal focus?

I have a form that pops up on a user's screen and has TopMost=true, but it steals the focus. How can I get it to not steal focus when it first appears?
2
votes
1answer
122 views

Delphi: Balloon Form with fsStayOnTop not working in Win7

I have an application that uses my own balloon form. This is a non-bordered, fsStayOnTop kind form. I show it with this code: ShowWindow(Handle, SW_SHOWNOACTIVATE); Visible := True; Today I ...
2
votes
1answer
175 views

Non-overlapped transparent control

I'm trying to make a tooltip for my video player. I use a windows media player embedded into my winform's app on c# (AxWMPLib.AxWindowsMediaPlayer) for playing video. And I have created a control that ...
2
votes
1answer
350 views

How to make window absolute topmost?

I use the SetWindowPos api to make my window topmost with the HWND_TOPMOST param. It works fine, but still tooltips are on top of it. How to make my window on top of all. Is there an api that I'm ...
2
votes
2answers
783 views

Really annoying bug with TopMost property in Windows Forms

I have this Windows Forms application where it sits in the notification area. Clicking on the icon brings it up front, clicking it again (or clicking on the app X icon) sends it back. This is the type ...
2
votes
1answer
554 views

Start a process TopMost

I have a C# .Net 2.0 app which implements a FullscreenMode like this: targetForm.WindowState = FormWindowState.Maximized; targetForm.FormBorderStyle = FormBorderStyle.None; targetForm.TopMost = true; ...
2
votes
3answers
2k views

How to get the handle of the topmost form in a WinForm app?

I have a WinForm app that has other child forms (not mdi). If the user presses "Esc" the topmost form should be closed even if it doesn't have the focus. I can use a keyboard hook to globally catch ...
2
votes
2answers
2k views

How do you make a non-modal topmost dialog that is only topmost in regards to the parent form in WinForms?

Thinking about this for an About dialog but I'm sure it's applicable in other places (say a find box) Sorry if this is a dupe, but I couldn't find this or how to articulate the last part about it ...
1
vote
1answer
74 views

Can you launch a process on top of the topmost window? (csharp wpf)

Can you launch a process on top of the topmost window? (csharp wpf) I have the following, but the current window before this one ( a wpf window using window class that has topmost=true ), remains on ...
1
vote
2answers
81 views

How to forbid users to close the form? (MS VS C# 2010) [closed]

Possible Duplicate: How to Disable Alt + F4 closing form? Help me pls. How to make a modal form, that closes only from program code. I want to prevent form closing when user presses ...
1
vote
1answer
108 views

Dialog Box not topmost while owner docked app bar is topmost

I have a docked app bar and when you log out, a modal login dialog box is shown. What I really want is to click on the app bar and have the login box become activated. To do this, I made the app bar ...
1
vote
2answers
308 views

Linq To SQL Select parent row and topmost Child Table row

There are examples around for this in SQL and I understand them, but I can't seem to wrap my head around it in Linq-SQL. There are two tables, 'Accounts' and 'AccountTransactions' related by the ...
1
vote
3answers
423 views

2 Application Top Most problem

I developed 2 applications one in Win32 API and second in C# WPF. I have a problem, 2 applications must be top most, but second (in C#) must be stroger top most than first application, problem is ...
1
vote
0answers
303 views

Restoring 'TopMost' window behavior after 'full screen mode' has ended (.NET)

I have a (Windows Forms) application that consists of a single window with the "TopMost" property set. If an application (e.g. PowerPoint) temporarily enters full screen mode the "TopMost" behavior of ...
1
vote
1answer
647 views

TopMost is not TopMost always - WPF

I have a clock application. I have set the Window's TopMost property. But, randomly, some other window or visual studio comes above clock. Is there any other way to make my window (clock app) to ...
1
vote
4answers
189 views

How to return 5 topmost values from vector in R?

I have a vector and I'm able to return highest and lowest value, but how to return 5 topmost values? Is there a simple one-line solution for this?
1
vote
3answers
4k views

Setting an XAML Window always on top (but no TopMost property)

I am developing an application based on OptiTrack SDK (from NaturalPoint). I need to run the application window as "Always on Top". The window is designed in XAML and is controled in the class ...
1
vote
1answer
310 views

(WinForms) ListView shows tooltips behind its own form when form is topmost

I have a Form with just a ListView in it. The ListView is set to show tooltips for subitems (in Details view). The tool tip shows fine if the form is not top most. When I set the Form's TopMost to ...
1
vote
1answer
1k views

Toggling TopMost in VB.NET

I have a form that has to be on top for a period of time, and then can be set behind other windows normally. Is there anything in addition to setting Me.TopMost to True or False that needs to be done? ...
1
vote
2answers
786 views

C# - How to deal with 2 “TopMost” Forms?

I have a parent form that is set to be TopMost and then I have another form that opens when a button is clicked. This child form is also set to be TopMost. The first issue I had was that when I ...
1
vote
2answers
2k views

How to keep a window on top of all other windows in my application only?

I would like to display a status window in my C# Windows Forms application that informs the user when the application is waiting to acquire a lock. This is an application-defined thing, however, the ...
1
vote
5answers
2k views

Can I set ShowDialog() to not be topmost?

Is there a way I can set a ShowDialog() to not be topmost? I've looked at all the related SO questions, and none quite matched my situation. What I do is open a new WinForm from a datagridview button ...
0
votes
2answers
41 views

Window message sent to my topmost form/window when the taskbar/start menu is over it?

I have a C# Windows Forms program, in Windows 7, but I think it applies to any Windows program. The main form of my program covers the entire screen, and has the Topmost property set. However, when I ...
0
votes
0answers
37 views

How can I create a Dialog(AlertDialog) via Windowmanager?

Is there any way to pop up a Dialog(AlertDialog) via addView() in Windowmanager? And make it always on topmost of screen even if the system alert is popping up. What I have added successfully is just ...
0
votes
1answer
80 views

How do I create a WinForms application that locks/freezes every other application and can't be closed?

I am writing an application in c# to lock or freeze all programs untill user enters a value in the app's textbox and clicks ok. The purpose of the app would be to get people to enter their time. As ...
0
votes
1answer
43 views

Make a control topmost in WPF

I have a form where the user can select various form elements and drag them around. Since the user can customize the layout of the form I am using a canvas and all of the elements are children of it. ...
0
votes
1answer
72 views

Prevent another application from losing focus in VB.net

I'm creating some software to keep my students on task. I've set it up so that I can control certain aspects of their computer from my computer. Problem is, I'm not sure how to control other ...
0
votes
3answers
98 views

Getting information if Topmost property is changed

I have a class, deriving from Window, in which I want to be notified when the Topmost property is changed. I tried to override setter, but it's not marked as virtual. Changing metadata connected with ...
0
votes
0answers
87 views

TopMost doesn't work with the If and else fuction

this code change the topmost state but doesn't work if (!TopMost) { this.TopMost = true; } else { this.TopMost = false; }
0
votes
0answers
164 views

WinForm No Longer TopMost?

I have a program that has a form that is set to TopMost = true, but for some reason, when it was running, the form stopped being the TopMost form. In my code, there is nothing that modifies this ...
0
votes
1answer
67 views

TopMost application - make it decrease oppacity when have something on back

First of all sorry about my english. What I really want to learn is a way to make my TopMost application "understand" that it has something on its back so i could than make it decrease her oppacity %. ...
0
votes
2answers
183 views

How do I make my login form be the top most while on a separate thread?

I currently have a login form that is launched in a separate thread when the main application launches. I tried setting the TopMost property on the login form but it still does not work. I don't want ...
0
votes
1answer
334 views

Why does TopMost=True not always work?

I have a simple app which is small and is supposed to float on top of all my other windows. After a few hours, I'll notice it is no longer on top of all my other windows and I was wondering if anyone ...
0
votes
1answer
221 views

Make A Control Be On Top

I have this one Image and I want it to be on top of another image. (window form application, c#)
0
votes
1answer
155 views

Determine if windows form is obstructed

Is it possible in .Net (or thru pinvoke) to determine if a windows form is obstructed from view (i.e. other windows have been moved over top of it, so it cannot be seen)? What I am doing is checking ...
0
votes
1answer
950 views

How to keep my topmost window on top?

I will first explain why I need it, because I anticipate that the first response will be "Why do you need it?". I want to detect when the mouse cursor is on an edge of the screen and I don't want to ...
0
votes
1answer
73 views

Make help-file not TopMost

I created process and launched help-file Process help = new Process(); help.StartInfo.FileName = "C:\MyProjects\comp\help_eng.hlp"; help.Start(); However, this help file is displaying topform;I ...
0
votes
2answers
819 views

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 ...
0
votes
1answer
586 views

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 ...
0
votes
2answers
983 views

Problem with Z-Order involving TopMost and Invoke

I am showing Dialogs with Form.ShowDialog(). Forms are set to TopMost. Some image processing calculations are performed asynchronly in the background. Their results are rendered in the main form by ...
0
votes
3answers
1k views

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 ...