Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

closed as too localized by George Stocker Nov 22 '12 at 18:55

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

RentLogNiceView3DataGridView.DataSource = PicobusterDataSet.RentLogNiceView3
Me.RentLogNiceView3TableAdapter.Fill(Me.PicobusterDataSet.RentLogNiceView3)
RentLogNiceView3DataGridView.Refresh() 'Try This
share|improve this answer
No luck, but thanks for trying. – Chance Nov 16 '12 at 14:13

Not the answer you're looking for? Browse other questions tagged or ask your own question.