hello and thank you for the response :)
The following is what I typed in and the errors were returned as
Row was underlined and error was given because row has no defined property
and
Convert.ToInt32 was returned as a overload failure :(
I did not use an ID number when setting up my database because she (the user) wants to use Employee as the identifier, is this what maybe making a difference?
or maybe I am not typing this code into the right part of my form?..i just double clicked on the datagridview and typed it where it put me.
anyway...I posted the code I used (and I hope I am not breaking any rules doing this)
so that maybe you can clear some of this up with me?
so far..this has given me the least amount of errors :)
is there maybe something I need to do to the database yet?
Private Sub DataGridView1_CellContentClick_1(ByVal sender As System.Object, ByVal e As System.Windows.Forms.DataGridViewCellEventArgs) Handles DataGridView1.CellContentClick
For Each row As DataGridViewRow In DataGridView1.Rows
Dim Employee As Integer = Convert.ToInt32 = (row("Employee").Value)
Dim TimeIn As Integer = row("TimeIn").Value.ToString()
Dim BayNumber As Integer = row("Bay Number").Value.ToString()
Dim CustomerName As Integer = row("Customer Name").Value.ToString()
Dim EstimatedProjTime As Integer = row("Estimated Project Time").Value.ToString()
Dim Task As Integer = row("Task").Value.ToString()
Dim Status As Integer = row("Status").Value.ToString()
Dim FinishedTime As Integer = row("Finished Time").Value.ToString()
Next