private void düzenleToolStripMenuItem_Click(object sender, EventArgs e) { try { if (metroGrid1.SelectedCells.Count > 0) { MusteriTanimlamaForm bilgileriGoster = new MusteriTanimlamaForm(metroGrid1.SelectedCells[2].Value.ToString(), 0, metroGrid1.SelectedCells[3].Value.ToString()); bilgileriGoster.Show(); } } catch (Exception ex) { HotelWarningForm.Show(ex.ToString(), Localization.Tamam, 1); } }
private void tümBilgileriGösterToolStripMenuItem_Click(object sender, EventArgs e) { try { if (metroGrid1.SelectedCells.Count > 0) { //mail adresi ve tablo bilgileri ile işle yap MusteriTanimlamaForm bilgileriGoster = new MusteriTanimlamaForm(metroGrid1.SelectedCells[2].Value.ToString(), 1, metroGrid1.SelectedCells[3].Value.ToString()); bilgileriGoster.Show(); } } catch (Exception ex) { HotelWarningForm.Show(ex.ToString(), Localization.Tamam, 1); } }