I'm creating a media rental program (it's a school project) in Visual Basic (Visual Studio 2010). I've created a View that shows data from three tables Innerjoined together, and I'm using it to show a log of the rentals (it draws data from the tables Renters, Media, and RentLog). I have code to update RentLog with values from text boxes (the renter ID and a barcode), which partially works; it updates RentLog, but my View on the form is unmodified. I need a way to refresh my View on the form so that the View reflects the addition to RentLog.
The following is the code for the button that gives the data to the SQL database.
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
If RIDTextBox.Text & BarcodeTextBox.Text <> "" Then
Dim sql As String = "INSERT INTO [RentLog] (RID, Barcode, DateOut) VALUES (@RID, @Barcode, @DateOut)"
Using cn As New SqlConnection("ConnectionString"),
cmd As New SqlCommand(sql, cn)
cmd.Parameters.Add("@RID", SqlDbType.Int).Value = RIDTextBox.Text
cmd.Parameters.Add("@Barcode", SqlDbType.VarChar, 50).Value = BarcodeTextBox.Text
cmd.Parameters.Add("@DateOut", SqlDbType.Date).Value = DateValue(Now)
cn.Open()
cmd.ExecuteNonQuery()
cn.Close()
End Using
RentLogNiceView3DataGridView.DataSource = PicobusterDataSet.RentLogNiceView3
Me.RentLogNiceView3TableAdapter.Fill(Me.PicobusterDataSet.RentLogNiceView3)
End If
End Sub
The code at the end is my attempt to refresh the View (I found a code snippet on Google that had something similar), but obviously it's not working. Everything else is functioning properly. Additionally, whenever I delete data out of RentLog and run the program, it doesn't reflect the deletions unless I actually Rebuild Solution. Is this a problem with my code, or just something that occurs in debug mode?