From e85f0984bac7611f216bbc406713e8fd86312e33 Mon Sep 17 00:00:00 2001 From: ​ Date: Thu, 1 Jan 1970 00:00:00 +0000 Subject: text -> HTML --- text2html/txt_to_html/Program.cs | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 text2html/txt_to_html/Program.cs (limited to 'text2html/txt_to_html/Program.cs') diff --git a/text2html/txt_to_html/Program.cs b/text2html/txt_to_html/Program.cs new file mode 100644 index 0000000..5a93c51 --- /dev/null +++ b/text2html/txt_to_html/Program.cs @@ -0,0 +1,23 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace txt_to_html +{ + internal static class Program + { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() + { + Application.SetHighDpiMode(HighDpiMode.SystemAware); + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new frm_main()); + } + } +} -- cgit 1.4.1