How to programmatically set a data cell of database in VB.Net?
- by manuel
I have a Microsoft Access database file connected to VB.NET.
In the database table, I have a 'No.' and a 'Status' column.
Then I have a textbox where I can input an integer.
I also have a button, which will change the data cell in 'Status' where 'No.' = textbox.Text(), when I click it.
Let's say I want the 'Status' cell to be changed to "Low".
What…