Example #1
0
 public DataTable MostrarCliente()
 {
     comando.Connection  = conexion.AbrirConexion();
     comando.CommandText = "SelectALLClientes";
     comando.CommandType = CommandType.StoredProcedure;
     leer = comando.ExecuteReader();
     tablaCliente.Load(leer);
     conexion.CerrarConexion();
     return(tablaCliente);
 }
Example #2
0
 public DataTable Mostrar()
 {
     comando.Connection  = conexion.AbrirConexion();
     comando.CommandText = "MostrarUsuarios";
     comando.CommandType = CommandType.StoredProcedure;
     leer = comando.ExecuteReader();
     tabla.Load(leer);
     conexion.CerrarConexion();
     return(tabla);
 }
Example #3
0
        public string ObtenerIDVen()
        {
            string        id       = "";
            CD_Conexion   conexion = new CD_Conexion();
            SqlDataReader leer;
            SqlCommand    comando = new SqlCommand();

            comando.Connection = conexion.AbrirConexion();
            try
            {
                comando.CommandText = "ObtenerVentaID";
                comando.CommandType = CommandType.StoredProcedure;
                leer = comando.ExecuteReader();
                while (leer.Read())
                {
                    id = leer["id_venta"].ToString();
                }

                leer.Close();
            }
            catch (Exception e)
            {
                MessageBox.Show("Ocurrio un error: " + e.ToString());
            }

            return(id);
        }
Example #4
0
        //LLenado de Combo Box Proveedores

        public void Llenar_Proveedor(ComboBox cb)
        {
            cb.Items.Clear();
            CD_Conexion   conexion = new CD_Conexion();
            SqlDataReader leer;
            SqlCommand    comando = new SqlCommand();

            comando.Connection = conexion.AbrirConexion();
            try
            {
                comando.CommandText = "LLenar_Proveedor";
                comando.CommandType = CommandType.StoredProcedure;
                leer = comando.ExecuteReader();
                while (leer.Read())
                {
                    cb.Items.Add(leer["nombre_proveedor"].ToString());
                }
                cb.SelectedIndex = 0;
                leer.Close();
            }
            catch (Exception e)
            {
                MessageBox.Show("No se lleno el ComboBox: " + e.ToString());
            }
        }