Hola
Hice esta fragmento de cofigo pero al momento de hacer el filtro no me mustra nada en el datagridvieW
Código PHP:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Data.SqlClient;
namespace CobXKAMEX
{
public partial class Form1 : Form
{
private SqlDataAdapter sqlDataAdapter1;
private DataSet ds;
public Form1()
{
InitializeComponent();
}
private void btBuscar_Click(object sender, EventArgs e)
{
try
{
string conexion = "Data Source=5.244.194.132\\PUNTADELCIELO,1433;Initial Catalog=2010SW;User ID=EuroWin;Password=ew#211218";
SqlConnection cnn = new SqlConnection(conexion);
SqlCommand cmd = new SqlCommand("select cuenta from asientos where cuenta = @cuenta ", cnn);
cmd.Parameters.Add("@cuenta", SqlDbType.VarChar).Value = txtcuenta.Text ;
cnn.Open();
sqlDataAdapter1 = new SqlDataAdapter ();
sqlDataAdapter1.Fill(ds);
ds = new DataSet();
dataGridView1.DataSource = ds.Tables["asientos"];
dataGridView1.Columns["cuenta"].HeaderText = "cuenta";
}
catch (Exception)
{
MessageBox.Show("jajajaja");
}
finally
{
Close();
}
}
}
}