Good afternoon.
This may happen thousands of times to newbies, and I’m one more.
I’ve a Table (DRAWINGS) with ID_DRAWING; NAME and TYPE (fk to ID_TYPE) to Table (TYPE) witch also have NAME.
Then I make a Form with the fields to feed the (DRAWINGS) table:
ID_DRAWING, read only textbox
NAME, to write a name, textbox
TYPE, Listbox to get the Name (dwg; dxf; step) from (TYPE) table, “for consistency”! (SQL to see the TYPE instead of ID numbers).
Now I put a Table control in the Form to see the Records that I’m inserting into (DRAWINGS) table, and to select a record to edit, if necessary.
Of course, the TYPE in that Table control appears as 0, 1 or 2, instead of (dwg; dxf; step).
How do you approach this “simple” problem, to see the actual (dwg; dxf; step) instead of ID’s?
Thank you in advance!