Hey all, just beginning to pick up some C# and I was wondering how to query data from a Data set in Visual Studio.
I'm setting my frame up like a form where it will show values from the database. I've got BindingNavigator to work properly (mainly because it does all the work for you) but I'm trying to figure out how to jump to a specific record via a button/link.
Example:
EMPLOYEES
------------------------------
EMPLOYEE_ID | EMPLOYEE_NAME
001 Devin
002 Nick
003 Patrick
If I were to click on a link titled "Devin" on my form, I'd like all the information found in the EMPLOYEES table for "Devin" to be displayed in there respective objects on the form.
Ideas?
Also, it'd be neat to have a dynamic TreeView of all the employee names. Essentially get amount of records and create a button for each employee record in the TreeView.
Make Sense?