Exemple #1
0
        public clientes(registros re)
        {
            //
            // The InitializeComponent() call is required for Windows Forms designer support.
            //
            InitializeComponent();

            //
            // TODO: Add constructor code after the InitializeComponent() call.
            //
            this.re = re;
        }
Exemple #2
0
 public editacliente(registros re, string id)
 {
     //
     // The InitializeComponent() call is required for Windows Forms designer support.
     //
     InitializeComponent();
     this.re = re;
     this.id = id;
     //
     // TODO: Add constructor code after the InitializeComponent() call.
     //
 }
Exemple #3
0
        void Button3Click(object sender, EventArgs e)
        {
            registros re = new registros(this);

            re.Show();
        }