Example #1
0
        private void DgvWIPDetails_RowHeaderMouseDoubleClick(object sender, DataGridViewCellMouseEventArgs e)
        {
            int id = Convert.ToInt32(DgvWIPDetails.Rows[e.RowIndex].Cells[0].Value);
            GenarateItineraryPlan GIP = new GenarateItineraryPlan(id, this);

            GIP.ShowDialog();
        }
Example #2
0
        private void BtnCreate_Click(object sender, EventArgs e)
        {
            GenarateItineraryPlan genPlan = new GenarateItineraryPlan(this);

            genPlan.ShowDialog();
        }