Exemplo n.º 1
0
        private void coalescedEditorToolStripMenuItem_Click(object sender, EventArgs e)
        {
            var result = MessageBox.Show(
                "This tool is outdated and does not work properly for editing DLC's. " +
                "\nTankmaster has developed a new tool which handles this correctly, do you wish to visit his thread instead?",
                "Outdated/Buggy tool!",
                MessageBoxButtons.YesNo, MessageBoxIcon.Asterisk);

            if (result == DialogResult.Yes)
            {
                System.Diagnostics.Process.Start("http://me3explorer.freeforums.org/additional-tools-t1524.html");
            }
            else
            {
                var coalesced = new Coalesced_Editor.CoalEditor();
                OpenMaximized(coalesced);
                taskbar.AddTool(coalesced, Properties.Resources.coalesced_editor_64x64);
            }
        }
Exemplo n.º 2
0
        private void coalescedEditorToolStripMenuItem_Click(object sender, EventArgs e)
        {
            var result = MessageBox.Show(
                "This tool is outdated and does not work properly for editing DLC's. " +
                "\nTankmaster has developed a new tool which handles this correctly, do you wish to visit his thread instead?",
                "Outdated/Buggy tool!",
                MessageBoxButtons.YesNo, MessageBoxIcon.Asterisk);

            if (result == DialogResult.Yes)
                System.Diagnostics.Process.Start("http://me3explorer.freeforums.org/additional-tools-t1524.html");
            else
            {
                var coalesced = new Coalesced_Editor.CoalEditor();
                OpenMaximized(coalesced);
                taskbar.AddTool(coalesced, Properties.Resources.coalesced_editor_64x64);
            }
        }