Hi,
I have a problem and Ive been searching for a solution for days. Maybe anyone of you knows a solution. Im still learning and I havent got much experience with Visual Basic .Net
I have a Windows Data Form that displays data about an Item-Table in MS Access. There are several textboxes on that form and they show the right information.
I also have several comboboxes and there seems to be the problem. Those comboboxes are alse bound to data from that same table.
Private Sub frmArtikelFiche_Load
Me.cboRecBedrag.DataBindings.Clear()
Me.cboRecBedrag.DataBindings.Add("SelectedValue", _ Me.dsArtikel, "VRD_Artikel.txtRecupel")
End sub
When I change the value that is selected in the combobox, because I want to update my data in the database and I navigate to the next, previous, first or last record, the window seems to block. I cant navigate anymore, nor can I close the Windows. I seems as if the program cannot load a new record, because theres a problem with the databindings.
I cant figure it out, although Ive been trying all kind of things.
I have a problem and Ive been searching for a solution for days. Maybe anyone of you knows a solution. Im still learning and I havent got much experience with Visual Basic .Net
I have a Windows Data Form that displays data about an Item-Table in MS Access. There are several textboxes on that form and they show the right information.
I also have several comboboxes and there seems to be the problem. Those comboboxes are alse bound to data from that same table.
Private Sub frmArtikelFiche_Load
Me.cboRecBedrag.DataBindings.Clear()
Me.cboRecBedrag.DataBindings.Add("SelectedValue", _ Me.dsArtikel, "VRD_Artikel.txtRecupel")
End sub
When I change the value that is selected in the combobox, because I want to update my data in the database and I navigate to the next, previous, first or last record, the window seems to block. I cant navigate anymore, nor can I close the Windows. I seems as if the program cannot load a new record, because theres a problem with the databindings.
I cant figure it out, although Ive been trying all kind of things.