heres the actual scenario
i have textboxes whoch are bounded
ii have buttonnext and btnprevoius, it works right now
but if i want to search particular data it will fill the textbox, after this when i clik the next button, it will follow the next row, and so with the prevoius
Private Sub bntNext_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles bntNext.Click
Try
Me.BindingContext(myInvoice.InvoiceTable).Position += 1
updatePosition()
Catch ex As Exception
MsgBox(ex.Message)
End Try
End Sub
what can u suggest me
tnx
|