How to display a message ontop of programs

wicked14

Member
Joined
Feb 13, 2012
Messages
9
Programming Experience
Beginner
How to display a message or for ontop of programs without minimizing the programs that are used in windows, for example im using/playing warcraft3 and my form cointans a datetime, and i want to display it when im playing.Thanks in advance
 
you mean like a messagebox?

MessageBox.Show(DateTime.Now)
 
Have you tried Application.Topmost?
 
He wants to display a form window over (on top of) a game window while continuing to play the game. I don't think that can be done can it? Doesn't topmost have focus?
 
Back
Top