[DUG] Making a file with a table in it

John Bird johnkbird at paradise.net.nz
Thu Nov 24 18:51:17 NZDT 2005


It may or may not be the best way to do it, but HTML tables are simple to
do, I have some help ones I generated from code.  Here is an example of the
syntax.  This is a more complex example , as it is actually a table where
each cell contains a link to help topics, but you get the idea.  In this
case I turned the border off (table border=0)

PDF is also a good way.


<BR>Help is available on these topics :
<TABLE>
<table border=0 cellspacing=10>
<!-- Table replaces XREF -->
	<TR>
		<TD><A href="#ADMIN">Administration</A></TD>
		<TD><A href="#ADVANCED">Advanced use</A></TD>
		<TD><A href="#BACKUP">Backup</A></TD>
	</TR>
	<TR>
		<TD><A href="#BCL">BCL</A></TD>
		<TD><A href="#CHANGES">Changes</A></TD>
		<TD><A href="#CHARGING">Charging</A></TD>
	</TR>
....(etc)

	<TR>
		<TD><A href="#BCLXWP">Word-Processor</A></TD>
		<TD><A href="#WHICH MENU">Which Menu</A></TD>
		<TD><A href="#YEAR2000">Year2000</A></TD>
	</TR>
</TABLE>

John


-----Original Message-----
From: delphi-bounces at ns3.123.co.nz [mailto:delphi-bounces at ns3.123.co.nz] On
Behalf Of Wayne Roser
Sent: Thursday, 24 November 2005 5:15 p.m.
To: NZ Borland Developers Group - Delphi List
Subject: [DUG] Making a file with a table in it


I've written a program to email timetables to staff at my school. Now I want
the timetables to look good. I want to attach a file to the email that shows
a pretty picture of their timetable. 
I'm wondering about html. Save to disk and attach to email. Where can I read
about producing an html document that'll look like a grid or table? Am I
looking in the wrong direction? Wayne

_______________________________________________
Delphi mailing list
Delphi at ns3.123.co.nz http://ns3.123.co.nz/mailman/listinfo/delphi




More information about the Delphi mailing list