Ver Mensaje Individual
  #5 (permalink)  
Antiguo 21/06/2010, 14:41
juangrimmjow
 
Fecha de Ingreso: junio-2010
Mensajes: 6
Antigüedad: 14 años, 5 meses
Puntos: 0
Respuesta: Hola necesito una ayudita con un combobox

bueno graxias por su ayuda pero ya le haye la manera algo asi me funciono:

System.Data.SqlClient.SqlConnection sqlConnection1 = new System.Data.SqlClient.SqlConnection(cnnStr);
System.Data.SqlClient.SqlCommand cmd = new System.Data.SqlClient.SqlCommand();
cmd.CommandType = System.Data.CommandType.Text;

cmd.CommandText = "DELETE conFotos WHERE Nombre = '" + cboBox2.SelectedValue.ToString() + "'";
cmd.Connection = sqlConnection1;

sqlConnection1.Open();
cmd.ExecuteNonQuery();
sqlConnection1.Close();