private void btnArabic_Click(object sender, EventArgs e) { //Opens the Arabic converter and closes the current form Arabic_Converter frmArab = new Arabic_Converter(); this.Hide(); frmArab.Show(); }
private void arabicToolStripMenuItem_Click(object sender, EventArgs e) { //Closes the current form and opens the Arabic converter Arabic_Converter frmArabic = new Arabic_Converter(); this.Close(); frmArabic.Show(); }