예제 #1
0
파일: Main.cs 프로젝트: brayanceron/Prueba
        private void btn_administrar_transacciones_Click_1(object sender, EventArgs e)
        {
            Random al = new Random();
            int    b  = al.Next(1, 2);
            Informacion_Clientes nuevo = new Informacion_Clientes(3);

            nuevo.Show();
        }
예제 #2
0
파일: Main.cs 프로젝트: brayanceron/Prueba
        private void btn_consultar_Click(object sender, EventArgs e)
        {
            Informacion_Clientes nuevo = new Informacion_Clientes(1);

            nuevo.Show();
        }
예제 #3
0
파일: Main.cs 프로젝트: brayanceron/Prueba
        private void btn_modificar_CLICK(object sender, EventArgs e)
        {
            Informacion_Clientes nuevo = new Informacion_Clientes(3);

            nuevo.Show();
        }
예제 #4
0
        private void btn_registar_Click(object sender, EventArgs e)
        {
            Informacion_Clientes nuevo = new Informacion_Clientes(2, user);

            nuevo.Show();
        }