Skip to content

Instantly share code, notes, and snippets.

@bjoerntx
Created February 28, 2022 17:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bjoerntx/cc30aac4513f849015b5c1bbead8f3ea to your computer and use it in GitHub Desktop.
Save bjoerntx/cc30aac4513f849015b5c1bbead8f3ea to your computer and use it in GitHub Desktop.
static class Program {
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main() {
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
TXTextControl.TextControl.DefaultFormattingPrinter = "Display";
Application.Run(new Form1());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment