Here is an example of how to print a header on each page. This gives an output in pdf which then can be printed. The biggest problem I had was finding the width for each column.

<cfdocument format="pdf"  margintop="1" >

<cfdocumentitem type="header">
<!--- Details --->
<table>
 <tr>
  <th>Check In</th>
  <th>
                <td width="90"><strong>Last Name </strong></td> </th>
  <th>
                <td width="90"><strong>First Name </strong></td> </th>
  <th>
                <td width="150"><strong>Home Phone </strong></td> </th>
  <th>
                <td width="150"><strong>Cell Phone </strong></td> </th>
  <th>
                <td width="150"><strong> Email </strong></td> </th>
  <th>Career Connection</th>
  <th>LinkedIn</th>
 </tr>
</table>
 </cfdocumentitem>
 <table cellpadding="2">
 <cfoutput query="Member">
  <tr>
   <td width="50"></td>
   <td>#LastName#</td>
   <td>#FirstName#</td>
   <td>#HomePhone#</td>
   <td>#CellPhone#</td>
   <td>#MemberEmail#</td>
   <td>#CCMember#</td>
   <td>#LinkedIn#</td>
   <!--- <td>""</td> --->
  </tr>
 </cfoutput>
</table>

</cfdocument>

At 09:09 PM 5/9/2007, you wrote:
Content-class: urn:content-classes:message
Content-Type: multipart/alternative;
        boundary="----_=_NextPart_001_01C792A8.3CCEE596"

Anyone know of a way to print the column headings (th) in a table on each page of a multiple page report?


Kevin Fricke


_______________________________________________
Reply to DFWCFUG:
  [email protected]
Subscribe/Unsubscribe:
  http://lists1.safesecureweb.com/mailman/listinfo/list
List Archives:
    http://www.mail-archive.com/list%40list.dfwcfug.org/
  http://www.mail-archive.com/list%40dfwcfug.org/
DFWCFUG Sponsors:
  www.instantspot.com/
  www.teksystems.com/


_______________________________________________
Reply to DFWCFUG: [email protected] Subscribe/Unsubscribe: http://lists1.safesecureweb.com/mailman/listinfo/list List Archives: http://www.mail-archive.com/list%40list.dfwcfug.org/ http://www.mail-archive.com/list%40dfwcfug.org/ DFWCFUG Sponsors: www.instantspot.com/
 www.teksystems.com/

Reply via email to