Ver Mensaje Individual
  #1 (permalink)  
Antiguo 12/09/2013, 10:52
Avatar de gonzalezjesus_77
gonzalezjesus_77
 
Fecha de Ingreso: julio-2013
Ubicación: venezuela
Mensajes: 11
Antigüedad: 11 años, 8 meses
Puntos: 0
Información Usar InputBox consulta sql server vb.net

Auxilio necesito amigos del Forum ayuda con el boton buscar. programo en visual.net, se me esta generandoel siguiente error y no se como resolverlo cuando tarto de buscar en un inputbox un dato Tipo texto, en mi tabla vendedor y el campo ven_des, El mensajee es el siguiente: "El valor no puede ser nulo.
Nombre del parámetro: dataSet"

mi codigo es el siguiente:

Código:
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
        Try

            Dim bcvend As String
            bcvend = Trim(InputBox("Teclee nombre de Vendedor", "Busqueda"))
            Dim conex As New SqlConnection(ConfigurationManager.ConnectionStrings("CONEXION").ConnectionString)

            Dim adaptador As New SqlDataAdapter("Select * From vendedor Where @ven_des='" & bcvend.Trim & "'", conex)
            conex.Open()
            adaptador.Fill(ds, "vendedor")
            If ds.Tables("vendedor").Rows.Count = 0 Then
                MsgBox("No se encontró el registro buscado", 64, "Mensaje")

            Else

                Dim dr As DataRow
                dr = ds.Tables("vendedor").Rows(0)
                TextBox2.Text = dr("@cod_ven").ToString
                TextBox3.Text = dr("@ven_des").ToString
                TextBox4.Text = dr("@telefonos").ToString
                TextBox5.Text = dr("@direc1").ToString
                Fecha_regDateTimePicker.Text = dr("@fecha_reg").ToString
                TextBox6.Text = dr("@email").ToString

            End If
            conex.Close()
        Catch ex As Exception
            MsgBox(ex.Message)
            MsgBox("Datos consultados")
        End Try

    End Sub