Hi guys,
I have few tables:
tblEmployees:
titleID - primary key
titleNme - (grouped into different categories like slotters, analysts, etc)
tblType:
TypeID - primary key
TypeName - (types would like general information, Standard operating procedures etc)
tblReports:
ReportID - primary key
titleID- foreign key to tblEmployees
typeID - foreign key to tblType
NmeReport
Location (Hyperlink)
What I want to do is let the user select their category (slotters, etc) from a combo box, and then this displays a list box where reports name, type and location is shown - Clicking the location should open the hyperlinked document.
any ideas? thanks guys!!!