Example #1
0
 private void MenuMake_Click(object sender, EventArgs e)
 {
     if (Interaction.MsgBox("You are about to create the Mul Files\r\nAre you sure ?", MsgBoxStyle.YesNo, "Make UO Map") == MsgBoxResult.Yes)
     {
         CompileYourNewMap uOMapMake = this;
         (new Thread(new ThreadStart(uOMapMake.Make))).Start();
     }
 }
Example #2
0
        public CompileYourNewMap()
        {
            MaximizeBox = false;
            MinimizeBox = false;
            CompileYourNewMap uOMapMake = this;

            base.Load          += new EventHandler(uOMapMake.Form1_Load);
            this.iLogger        = new LoggerForm();
            this.i_RandomStatic = true;
            InitializeComponent();
        }