Example #1
0
 private void docksToolStripMenuItem_Click(object sender, EventArgs e)
 {
     try
     {
         Docks d = new Docks();
         d.Show();
     }
     catch (Exception ex)
     {
         MessageBox.Show(ex.Message);
     }
 }
Example #2
0
 private void toolStripButton3_Click(object sender, EventArgs e)
 {
     try
     {
         Docks d = new Docks();
         d.Show();
     }
     catch (Exception ex)
     {
         throw;
     }
 }
Example #3
0
        private void shipToolStripMenuItem_Click(object sender, EventArgs e)
        {
            Docks d = new Docks();

            d.Show();
        }