Hello, how i can draw text to monitor, i dont want to draw it on program form, i just want to print an text in the screen :)

TextOut & DrawText i think draw text on form :/

Recommended Answers

All 2 Replies

Are you talking about the Console?
...or do you really want text to appear across the desktop?

Console = :

using System;

namespace DW_405628_CS_CON
{
   class Program
   {
      static void Main(string[] args)
      {
         Console.WriteLine("Hello, World");
      }
   }
}

Drawing text straight to the screen (without displaying any application) requires some knowledge of the OS you're using. Most will still require some form of window to be open for the application. You might consider looking into writing a widget?

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.