Search results for query: *

  • Users: vbamateur
  • Content: Threads
  • Order by date
  1. V

    Using Combo Boxes in VB.NET

    I have two Combo Boxes on my form. I sucessfully set the datasource for the first ComboBox using the below code : "Dim strSQL As String = "Select Employer From Employer" Dim DA As New SqlDataAdapter(strSQL, objConn) Dim DS As New DataSet DA.Fill(DS, "Employer") Dim dt As New DataTable...
  2. V

    Error when using SQL Stored Procedure in VB.NEt

    I called a store procedure that returns a value in VB.NET and it worked the first time the application runs. However, I notice that if I run the program subsequently after, I get the following error message: "Subquery returned more than 1 value. This is not permitted when the subquery follows...
Back
Top