Exemplo n.º 1
0
        private void cmdEdit_Click(object sender, EventArgs e)
        {
            if (!FormTools.IsRowSelected(dgMain))
            {
                return;
            }
            Guid rowID;

            rowID = (Guid)dgMain.SelectedCells[0].OwningRow.Cells["RowID"].Value;
            frmStandarBiayaServiceUpdate ifrmChild = new frmStandarBiayaServiceUpdate(this, rowID);

            ifrmChild.ShowDialog();
        }
Exemplo n.º 2
0
        private void cmdAdd_Click(object sender, EventArgs e)
        {
            frmStandarBiayaServiceUpdate ifrmChild = new frmStandarBiayaServiceUpdate(this);

            ifrmChild.ShowDialog();
        }