Esempio n. 1
0
 private void BuildForm()
 {
     if (finvoice == null)
     {
         finvoice = new FOutward();
     }
     finvoice.FInward_NeedToRefresh += VInward_NeedToRefresh;
     Parent.Controls.Add(finvoice);
     finvoice.Dock = DockStyle.Fill;
     finvoice.Show();
     finvoice.BringToFront();
 }
Esempio n. 2
0
        void Listgrid_RowAction(object sender, EventArgs e)
        {
            if (listgrid.SelectedRow == null)
            {
                return;
            }
            if (finvoice == null)
            {
                finvoice = new FOutward();
            }
            BuildForm();
            string pkValue = GetSelectedPkValue();

            if (pkValue != null)
            {
                finvoice.SetAction(BtnEvent.Open, pkValue);
            }
        }