I'm currently working on a project where I'd like to display all the data from a given table based on a selection made in a Combo Box.
What I have currently is the following:
Four tables (T1, T2, T3, T4) each with two columns of data (Values1, Values2).
One combo box which contains the names of these look up tables. The user selects one of these options to display the data from the specific table.
Two other combo boxes, where I'd like to place the data from the chosen table into.
If I were writing C# I could do something like:
String query = "SELECT (Values1, Values2) FROM " + TableName;
var rows = doQueryAndGetRows(query);
displayMyrows(rows);
How can I do something similar in Access? I've never really used it before, and I don't have much experience with VB for applications either.