daveofgv
Well-known member
I have a windows form and I created a SQL database within the project.
To fill the controls visual studio 2008 pro adds the fill for you:
I can get the combobox to show the data, labels, datagrid etc.....
NOW:
I can update the datagrid and other controls with:
but when I look inside the database (and refresh) it is not updated............
Can anyone tell me why??????
How do I update the actual database so when I look into it the info i just added in the datagrid is there???
thanks
daveofgv
To fill the controls visual studio 2008 pro adds the fill for you:
VB.NET:
Me.PersonalTableAdapter.Fill(Me.Personaldataset.personal)
I can get the combobox to show the data, labels, datagrid etc.....
NOW:
I can update the datagrid and other controls with:
VB.NET:
PersonalTableAdapter.Update(Personaldataset)
but when I look inside the database (and refresh) it is not updated............
Can anyone tell me why??????
How do I update the actual database so when I look into it the info i just added in the datagrid is there???
thanks
daveofgv