I figured it out. I copied the mrpt file and made adjustments here is what I have to create a print out for my family with only the Task, Due Date and Notes Columns
Begin: ~~~ReportTitle <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http:// www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <!-- <meta http-equiv="Content-Type" content="text/html; charset=windows-1251" /> --> <title>MyLifeOrganized Report</title> <link href="<%ReportsPathURL%>mlo_styles.css" rel="stylesheet" type="text/css" /> <!-- for expand/collapse --> <script src="<%ReportsPathURL%>mlo_expand.js" type="text/javascript"></ script> <link rel="STYLESHEET" type="text/css" href="<%ReportsPathURL %>mlo_expand.css"> <!-- // --> </head> <body> <!-- Report Declarations Begin --> <!-- Report Declarations End --> <!-- Main header --> <h1> <%ReportTitle%> <span class="<%styleViewName%>"> :: <%ViewName%></span> </h1> <div class="creation-date">Created: <%DateTime%></div> <div class="tree"> <!-- Notes expand/collapse controls --> <div class="expandControls non-print <%styleTaskNotes%>"> <a href="#" onclick="UnhideAll()">Expand notes</a> | <a href="#" onclick="hideAll()">Collapse notes</a> </div> <!-- ToDo List related fields --> <div class="<%styleToDoList%>" > <h2>To-Do List View: <%ToDoFilterView%></h2> <div class="toDoFilters <%styleToDoFilter%>"> <span class="<%styleToDoContext%>">Contexts: <%ToDoFilterContext %></span> <span class="<%styleToDoIHave%>">Time: <%ToDoFilterIHave%></span> <span class="<%styleToDoFilterDate%>"><br>Date: <%ToDoFilterDate %></span> </div> </div> <table> <tr class="<%styleTableHeader%>"> <th valign="top"> <th width="25%"> Task </th> <th valign="top" class="<%styleTaskStartDate%>"> <div class="<%styleTaskStartDate%>">Start</div> </th> <th valign="top" class="<%styleTaskDueDate%>"> <div class="<%styleTaskDueDate%>">Due</div> <th width="10%"> </th> < <th valign="top" class="<%styleTaskNotes%>"> <div class="<%styleTaskNotes%>">Notes</div> <th width="60%"> </th> </tr> ~~~GroupTitle <tr> <td colspan="3"> <h2><%GroupCaption%></h2> </td> </tr> ~~~Group <tr> <td valign="top"> <div class="<%styleTask%>"><%TaskCaption%></div> </td> <td valign="top"> <div class="<%styleTaskDueDate%>"><%TaskDueDateTimeEx%></div> </td> <td> <div class="<%styleTaskNotes%>"> <span connected="Nt<%TaskNumber%>" id="pseudolink"> <span class="notesLink">Notes</span> </span> <br> <span id="Nt<%TaskNumber%>" state="hidden"> <span class="notes"><%TaskNotes%></span> </span> </div> </td> </tr> ~~~GroupEnd <tr> <td colspan="3"> <div class="groupSummary <%styleGroupSubTotal%>"> Tasks: <%GroupTasksCount%> <br>Completed: <%GroupCompletedCount%> <br>Not completed: <%GroupNotCompletedCount%> </div> </td> </tr> ~~~ReportEnd <tr> <td colspan="3"> <div class="totalSummary <%styleTotal%>"> Total tasks: <%TasksCount%> <br>Completed: <%CompletedCount%> <br>Not completed: <%NotCompletedCount%> <span class="<%styleTotalRequired%>"><br>Total time required: < %TotalTimeRequiredMin%> - <%TotalTimeRequiredMax%></span> </div> </td> </tr> </table> </div> <div class="footer">Family Tasks </div> </body> </html> END: James wrote: > How do I change the default size of the Notes column in printouts, and > possibly increaes the size of the Task Column? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "MyLifeOrganized" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/myLifeOrganized?hl=en -~----------~----~----~----~------~----~------~--~---
