Click here to Skip to main content
16,004,828 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi every buddy

i would like keep my Form always in TOP !

Thank you
Posted
Comments
RaviRanjanKr 20-Dec-11 4:42am    
You can easily set by using properties of Window while designing form.
set TopMost property of Form to true. by default its property set to false.

Try:
VB
Me.Topmost=True
 
Share this answer
 
Dear Friend,

Follow the link:- http://www.vbforums.com/showthread.php?p=3249342

Use a timer, to keep setting the form property to form1.topmost = true.

Set the timer to every 1 second.

Here is the code snipet:
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
Me.TopMost = True
End Sub

Mark this as your answer if it helps you out :-)

Thanks
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900