Yeah I know another new user question (sigh).
I creating a vb6 frontend to an acc2k mdb. This mdb has 2 tables like so
Table1: full list of names with id, record type
Table2: full details for all records (about 40 fields) unique on id
The reason for having 2 tables is that the db is quite large and doing a soundex search on just the table with a few fields ended up being much much quicker. The data is completely read only no records to add, edit or delete.
I have 4 forms what I want to do is open a record from the flexgrid in the form for that record type.
In my case the record type can be B (birth), D (death), M (Marriage) etc.
All of the data is in Table2 so it only has to open one recordset but a different form (different data gets shown) is required.
I'm using a MSHFlexGrid for searching and sorting and this all working great (finally).
So I guess I need to select a given record from the grid read what type of record it is, open the appropiate form and fill it with data based on the id.
Phew... can someone please give me some pointers. This was all very easy in Access with an open form with openargs.
cheers
Howard
I creating a vb6 frontend to an acc2k mdb. This mdb has 2 tables like so
Table1: full list of names with id, record type
Table2: full details for all records (about 40 fields) unique on id
The reason for having 2 tables is that the db is quite large and doing a soundex search on just the table with a few fields ended up being much much quicker. The data is completely read only no records to add, edit or delete.
I have 4 forms what I want to do is open a record from the flexgrid in the form for that record type.
In my case the record type can be B (birth), D (death), M (Marriage) etc.
All of the data is in Table2 so it only has to open one recordset but a different form (different data gets shown) is required.
I'm using a MSHFlexGrid for searching and sorting and this all working great (finally).
So I guess I need to select a given record from the grid read what type of record it is, open the appropiate form and fill it with data based on the id.
Phew... can someone please give me some pointers. This was all very easy in Access with an open form with openargs.
cheers
Howard