private void metroButton4_Click(object sender, EventArgs e) { string s = "Country"; FrmCity fc = new FrmCity(s); fc.ShowDialog(); txtcountry.Text = fc.city; txtcodecountry.Text = fc.code; }
private void metroButton3_Click(object sender, EventArgs e) { string s = "Job"; FrmCity fc = new FrmCity(s); fc.ShowDialog(); txtjobname.Text = fc.city; txtjobcode.Text = fc.code; }
private void metroButton2_Click(object sender, EventArgs e) { string s = "Citytavalod"; FrmCity fc = new FrmCity(s); fc.ShowDialog(); txtcitytavalod.Text = fc.city; txtcodetavalod.Text = fc.code; }