Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 490 results for
topmost
- Page 1
TopMost property doesn't work
Programming
Software Development
20 Years Ago
by marijana
hi, please help..i have a problem with the
TopMost
property of a form, it doesn't work.. have 2 … (on the top of the frmA), so i set its
TopMost
prop. to true, but it still appears under the frmA…
Re: TopMost property doesn't work
Programming
Software Development
20 Years Ago
by juliik
I don't understand why would by such a behaviour wanted, so I presume that it's a bug. Try to set this property after the window desired to be
TopMost
is displayed by Show() method. That ususaly fixes it.
Topmost Window Handle
Programming
Software Development
15 Years Ago
by bbman
….com/Tutorial/CSharp/0520__Windows/GetcurrentActiveWindow.htm[/url] to get the
topmost
window handle; however, I need to click a notify icon…
Putting Form as ABSOLUTE topmost
Programming
Software Development
16 Years Ago
by sid78669
… problem. I have a form. I set it to be
topmost
. It works. Then I put one of my desktop shortcut… shortcut bar. Is there anyway in C# to disable the
topmost
feature of everyother shortcut bar and application? The shortcut bar…
Return program to TopMost with keys
Programming
Software Development
11 Years Ago
by Start4me
… in the background and can be brought back to the
topmost
upon a keyboard shortcut. I got stuck when creating the…
Re: Return program to TopMost with keys
Programming
Software Development
11 Years Ago
by Start4me
So it won't be possible to use Win key with Z? When the program is not in focus (not
TopMost
), how will I make the shortcut above bring the program to front?
Re: Topmost Window Handle
Programming
Software Development
15 Years Ago
by bbman
Solved. I used the get title thing to check it actually had a title.
Re: Return program to TopMost with keys
Programming
Software Development
11 Years Ago
by Minimalist
The LWin and RWin keys are modifier keys with some extra functionallity. It is easier to use the Alt or Control keys. Private Sub TextBox1_KeyDown(sender As Object, e As KeyEventArgs) Handles TextBox1.KeyDown If (e.Modifiers = Keys.Control AndAlso e.KeyCode = Keys.Z) = True Then Me.BackColor = Color.Blue…
Re: Return program to TopMost with keys
Programming
Software Development
11 Years Ago
by Minimalist
Yes you can - To have these keys raise the KeyDown event, you must override the IsInputKey method in each control on your form. Read the link. Since your code calls it from the TextBox1_KeyDown event you need to call it from the form that has focus.
Re: Return program to TopMost with keys
Programming
Software Development
11 Years Ago
by Start4me
TakeDown_KeyDown is actually a button. I've looked at the code, but wasn't able to figure out how to > override the IsInputKey method in each control on your form
Re: Return program to TopMost with keys
Programming
Software Development
11 Years Ago
by Reverend Jim
Instead of trying to build this into your program you might consider a program like Qliner Hotkeys. I've been using it for years. You can assign the program to a hotkey (like WINDOWS-F12) and when that hotkey is pressed, the program 1. starts and comes to the front if it is not already running 1. is brought to the front if it is already running
BringToFront not working properly
Programming
Software Development
15 Years Ago
by Dmennite
… { //Make form active this.
TopMost
= true; this.Focus(); this.BringToFront(); this.
TopMost
= false; }[/CODE] and …wont come to front... I set frmEdit
TopMost
property to true in designer and removed… then it will not set the
topmost
to false and is always on top…
A question - 2D Array
Programming
Software Development
12 Years Ago
by prakhs
…we have to do is - from each connected segments select
topmost
-leftmost element (1st priority is top, 2nd priority is left…elements of the connected segment with false value except the
topmost
-leftmost element. so in the example, 1st connected segment… element is (0,1) and 2nd connected segment
topmost
leftmost element is (3,1). so, our 2nd 2d array…
Re: Problem With Form
Programming
Software Development
16 Years Ago
by waynespangler
To be truthful with you I have never used
TopMost
before. I tried this code: [CODE] Child1.MdiParent …= Me Child1.Text = "Top Most" Child1.
TopMost
= True Child1.Show() Child2.Text = "This should be …forms. Now if I set the MDI form to
topmost
=true then the form does stay on top of…
Two-way form in C#
Programming
Software Development
13 Years Ago
by Andy90
… checked and I click ok button, the
TopMost
property of form 1 is set true. …(ontop.Checked == true) { backform.
TopMost
= true; } else { backform.
TopMost
= false; } } } }
Re: Two-way form in C#
Programming
Software Development
13 Years Ago
by Ancient Dragon
… regains control, then use that information to set its
TopMost
property appropriately. Something like below: warning: I didn'… void openform2_Click(object sender, EventArgs e) { pqr.Show(); this->
TopMost
= pqr.GetTopMost(); } } } ~~~ ~~~ namespace xyz { public partial class Form2 : …
Re: Two-way form in C#
Programming
Software Development
13 Years Ago
by Mitja Bonca
…, when opening form2. Then use this reference to set the
TopMost
property. Example: //when opening form2: `Form2 f2 = new Form2(this… form2 when you want to show f1 on top: `f1.
TopMost
= true;`
How do I get a form to capture ALL keyboard input?
Programming
Software Development
18 Years Ago
by scru
…;normal" and the other is set to
topmost
and invisible. I want the
topmost
form to capture all keyboard input, but…
Minimize number of forms.
Programming
Software Development
17 Years Ago
by 1qaz2wsx7
… at the top of the screen all the time (form.
topmost
) but the problem is when i go to another program… i do it ? (i tryed to make all the forms.
topmost
=false, when my main forum lost his focus, but its…
How to activate A Window
Programming
Software Development
16 Years Ago
by Rombosia
…. when the hotkey is pressed, the application comes to the
topmost
, or bottommost z-order. I have used SetwindowPos api. The…, is that in as much as the window is the
topmost
, it is not active, so it does not receive input…
Vb.net Forms
Programming
Software Development
16 Years Ago
by manoj_582033
… open any other form,for this i m doing [B]
topmost
=true[/B](Property of form) ,& It 's working also… So Please Tell Me,How could i make that form
topmost
& Messages must be top of that form
Change WindowState of a form from another.
Programming
Software Development
15 Years Ago
by Cap'nKirk
… & About. When the About form is showing it is
TopMost
, now I have added code so that when a LinkLabel…] This works fine except that the Main form is now
TopMost
and sits above the opened browser window. What I am…
Keep Form On Top
Programming
Software Development
14 Years Ago
by JOSheaIV
… form on top. I have found the code [CODE]this.
TopMost
= true;[/CODE] But that only keeps the the form on… I do this.Close() for the form with that make
TopMost
false) Oh and thanks
MY App_problem Icon
Programming
Software Development
13 Years Ago
by VB 2012
… = My.Settings.My_Topmost_app If OptionsForm.MainFormTopmostCKB.Checked Then Me.
TopMost
= True Else Me.
TopMost
= False End If If My.Settings.My_First_Build = True…
Acees denied app - Error
Programming
Software Development
13 Years Ago
by VB 2012
….Close() End If If FrmOptions.KryptonCheckBoxTopMost.Checked Then Me.
TopMost
= True Else Me.
TopMost
= False End If End Sub[/CODE] at red…
Re: Acees denied app - Error
Programming
Software Development
13 Years Ago
by VB 2012
….Close() End If If FrmOptions.KryptonCheckBoxTopMost.Checked Then Me.
TopMost
= True Else Me.
TopMost
= False End If If Me.CheckBoxAutoUpdtes.Checked Then…
Create two line on center screen
Programming
Software Development
13 Years Ago
by 432
I want, create (+) like this two line a little big than +, but it's have to always
topmost
, i run a game it's again
topmost
. How can i, Thanks now
Customize windows scroll bar in combobox
Programming
Software Development
12 Years Ago
by NidhiSree
…vScrollBar.Handle, ShowWindowCommands.Show); Win32.SetWindowPos(vScrollBar.Handle,HWND.
TopMost
, 155, 1, 23, 105, SetWindowPosFlags.SWP_SHOWWINDOW); …vScrollBar.Handle); Win32.SetWindowPos(parent.vScrollBar.Handle, HWND.
TopMost
, 155, 1, 23, 105, SetWindowPosFlags.SWP_SHOWWINDOW);…
Synchronise Mutliple JTable column Margins
Programming
Software Development
12 Years Ago
by CoilFyzx
… columns (The first column spans the first columns of the
topmost
table). What I wish to do now is to make… table reactive to the movement of the margins in the
topmost
table. I wish for them to stay aligned. How do…
Re: Bringing a window to front and get it focused
Programming
Software Development
12 Years Ago
by Eternal Newbie
Yes, I did used: Me.
TopMost
= True 'Then it will bring the form to top Me.
TopMost
= False 'Remove .
TopMost
state so you can work on other forms, too
1
2
3
9
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
Backlink Auditor
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC