Example #1
0
 private void btnInfo_Click(object sender, EventArgs e)
 {
     FormTovarShow tmp = new FormTovarShow();
     tmp.Owner = this.Owner;
     this.Dispose();
     tmp.ShowDialog();
 }
Example #2
0
 private void miTovarShow_Click(object sender, EventArgs e)
 {
     FormTovarShow tmp = new FormTovarShow();
     tmp.Owner = this;
     tmp.ShowDialog();
 }