Search results for query: *

  1. J

    Why does my datareader always return false when they are valid rows?

    Hi there I have the following method; public static Boolean CheckIFPackageExists(string id) { OleDbConnection myConnection = GetConnection(); string myQuery = "SELECT * FROM Package WHERE Email =" + id; OleDbCommand command = new...
  2. J

    How can I pass a value from the row of a datagrid view on one windows form to ...

    Hi there Sorry I think my thread title was misleading, ive actually managed to successfully pass in the data to the other form, i just want to then use this value in a database query from the second form
  3. J

    How can I pass a value from the row of a datagrid view on one windows form to ...

    Hi there I am trying to pass the id value of the selected row in a datagridview in one windows form to another windows form. How is this done? I have created a string and put the value of a certain column of the currentRow of the datagridview, then parsed this string into an int, i know these...
Back
Top Bottom