Arg81
Well-known member
Did a quick search but I don't think my search keywords were correct...got back quite a lot of irrelevant posts
OK, I fill a dataSet from a dataAdapter. (dataAdapter connects to MS SQL 2000)
...Once I have data in the table in the dataSet, can it be queried??? I.E. I load all my employees from our Employee table in SQL into my dataSet. I want one form with a combobox set to display the employees that are still employeed (Where Employed=1) and another form with a combobox set to display those who have left (Where Employed=0)
The reason I ask this is for historial reasons. I load all the employee data in the app on the main form (then shared global). When someone leaves they get marked in the database. But I need a form that can load all the records for a previous employee.....
I assume the other way is to create another dataTable in the dataSet and change the forms to point to the correct table?????
Help / Advice / Slapping welcomed warmly
OK, I fill a dataSet from a dataAdapter. (dataAdapter connects to MS SQL 2000)
...Once I have data in the table in the dataSet, can it be queried??? I.E. I load all my employees from our Employee table in SQL into my dataSet. I want one form with a combobox set to display the employees that are still employeed (Where Employed=1) and another form with a combobox set to display those who have left (Where Employed=0)
The reason I ask this is for historial reasons. I load all the employee data in the app on the main form (then shared global). When someone leaves they get marked in the database. But I need a form that can load all the records for a previous employee.....
I assume the other way is to create another dataTable in the dataSet and change the forms to point to the correct table?????
Help / Advice / Slapping welcomed warmly
Last edited: