On Screen Display

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How do I create an on screen display using c#? By on screen display I mean
text that appears above all windows, usually in the upper right hand corner
of the display (For example, an OSD indicating that the current CHANNEL).
 
Use Form.TopMost = true

--

Best regards,

Carlos J. Quintero

MZ-Tools: Productivity add-ins for Visual Studio .NET, VB6, VB5 and VBA
You can code, design and document much faster.
Free resources for add-in developers:
http://www.mztools.com
 
I only want the text to display. I made the form's opacity 0, but how do I
only make the label show? The problem is that by setting the form's opacity
to 0, the label is also. If I can make only the label's text show, I am set.
 
Back
Top