Esempio n. 1
0
 private void aboutToolStripMenuItem_Click(object sender, EventArgs e)
 {
     //HLinkMessageBox.Show(Application.ProductName + " version: " + Application.ProductVersion + Environment.NewLine +
     //    "Assembler code editing tool." + Environment.NewLine +
     //    Application.ProductName + " site: http://aeditor.codeplex.com/" + Environment.NewLine +
     //    "Please, report bugs and ask questions to:" + Environment.NewLine +
     //    ("http://aeditor.codeplex.com/Thread/List.aspx" + Environment.NewLine),
     //    "About " + Application.ProductName);
     HLinkMessageBox.Show(
         Application.ProductName + ". " + Properties.Resources.Version + ": " + Application.ProductVersion + Environment.NewLine +
         Properties.Resources.AsmCodeEditingTool + "." + Environment.NewLine +
         Properties.Resources.Site + ": http://aeditor.codeplex.com/" + Environment.NewLine +
         Properties.Resources.PleaseReportBugsTo + ":" + Environment.NewLine +
         "http://aeditor.codeplex.com/Thread/List.aspx" + Environment.NewLine,
         Properties.Resources.About + " " + Application.ProductName);
 }
Esempio n. 2
0
        public static void Show(string Text, string Header)
        {
            HLinkMessageBox msg = new HLinkMessageBox(Text, Header);

            msg.Show();
        }