Hello all --
I am a bit confused on a project I'm working on. I have an Access
database that consists of quite a few tables. These tables consist of
various chemical IDs. I need to create a script that takes the
chemical IDs and makes an individual HTML page for each chemical ID.
i.e.
tblOrganicChemicals:
ChemID, ChemName, ChemProp1, ChemProp2, ...
tblIOChemicals:
ChemID, ChemName, ChemProp1, ChemProp2, ...
and so on.
I need to grab each ChemID and list all the attributes to it. Such as:
<dir>
|->ChemID1.html
|->ChemID2.html
|->ChemID3.html
|->ChemID4.html
Each html file lists the attributes associated with that ChemID. There
will be a ton of html files, but that is what the client wants. I'm
looking at making a report, and then generating a html file for each
one. Does this make any sense? Can I get some pointers on how to set
up the report?
|