How can i make a program stay above the task bar even when it loses focus with visual basic 2008?
+4
A:
if needed in any case, one can set the TopMost property of the form to true. please think about not annoying your users :-)
.
henchman
2010-03-03 02:43:18
I don't think that will help.
SLaks
2010-03-03 02:44:22
just tried it out successfully in c# 2.0/vs2008/vista.
henchman
2010-03-03 02:54:29
+1 for providing an answer (if even with the remark)
Otaku
2010-03-03 02:56:15
the task bar still covers it when you defocus it
Jcubed
2010-03-03 04:06:05
as i said, works on .net with c# 2.0/vs2008/vista... i may help with other configuration, but first, you have to tell me :-)
henchman
2010-03-03 04:26:46
I mean, it puts it ontop of other things, but not things that have topmost set to true as well
Jcubed
2010-03-04 00:13:25
correct. thats intended :-) there is no top-topmost, sorry :-)the focused topmost-window is always in front of other non-focused topmost-windows. so the only thing you could do is focus your window, when it's being unfocused - but i would not recommend such a blatant behavior.
henchman
2010-03-04 10:14:45