示例#1
0
        private void toolStripButton4_Click(object sender, EventArgs e)
        {
            frmOP_ListaPrecios o = new frmOP_ListaPrecios(null);

            o.MdiParent = this;
            o.Show();
        }
示例#2
0
        private void lklListaPrecios_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            frmOP_ListaPrecios o = new frmOP_ListaPrecios(this.txtCodigo.Text);

            o.MdiParent = this.MdiParent;
            o.Show();
        }
示例#3
0
        private void asignarListaDePreciosToolStripMenuItem1_Click(object sender, EventArgs e)
        {
            frmOP_ListaPrecios o = new frmOP_ListaPrecios();

            o.MdiParent = this;
            o.Show();
        }