Access HTML report?

K

Kevin

Where can I find more information on template building?
Putting the output of a report into the <body> of an HTML
template is kind of useless, having the HTML generator
match the Tag field with a {Tag} marker in the HTML
template would be the way to go.
Say a report with:
Field: firstname Tag: First
Field: lastname Tag: Last
(note: the {: tells the generator to place the tag not
the data into the field)
HTML Template:
<HTML>
<HEAD>
<title>Template</title>
<link rel="stylesheet" type="text/css" href="Style.css">
</HEAD>
<BODY>
<TABLE><TR>
<TD Class=LabelClass>{:First}</TD><TD>{:Last}
</TD></TR><TR>
<TD Class=DataClass>{First}</TD><TD>{Last}</TD</TR>
</BODY></HTML>
If Access would do this I could send HTML formatted e-
mails that look decent instead of forcing my end-users to
screw around with a broken snapshot viewer.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top