コード例 #1
0
        private void button1_Click(object sender, EventArgs e)
        {
            var mensaje = Funciones.actualizardulces(Int32.Parse(txtid.Text), txtusuario.Text);

            MessageBox.Show(mensaje);
        }
コード例 #2
0
ファイル: verdulces.cs プロジェクト: GabrielOrtizL/Catlogin
 private void button1_Click(object sender, EventArgs e)
 {
     dataGridView1.DataSource = Funciones.veralmacen();
 }
コード例 #3
0
ファイル: Catactual.cs プロジェクト: GabrielOrtizL/Catlogin
        private void btnlogin_Click(object sender, EventArgs e)
        {
            var mensaje = Funciones.actualizar(Int32.Parse(txtid.Text), txtusuario.Text, txtcontraseña.Text);

            MessageBox.Show(mensaje);
        }
コード例 #4
0
        private void btnlogin_Click(object sender, EventArgs e)
        {
            var mensaje = Funciones.eliminardulces(Int32.Parse(txtid.Text));

            MessageBox.Show(mensaje);
        }