I have added some fields in my database table and added them on my dataset with the help of the wizard. In my code I have two queries an insert and update which do not pick up the changes made to the dataset.
This means that they are some somehow forgotten to get updated. Therefore, when I type this:
Me.TransactionTableAdapter.updTransaction(1,2,3)
it works using the previous database version instead of being like this
Me.TransactionTableAdapter.updTransaction(1,2,3,4)
Any ideas how to get it updated without editing the Dataset.Designer.vb file?