Sorry, currently there is no way to modify or remove the header and footer.
TN: 16528 PRODUCT: Rose OS: All DEFECT #: none PATCH #: none REFERENCES: CREATED: 14-APR-2001 REVISED: 14-APR-2001 QUESTION: Is there an option to surpress print headers and footers when printing? Use to be in older versions of Rose. ANSWER: Sorry but you are running up against an open defect: ------------------------------------------------------------------- DefectID: 8646 : Cannot choose to turn off print header or footer Priority _______ 2 - High Attention Severity _______ 2 - Major Type ___________ defect State __________ assigned Notes:: Cannot choose to turn off the print header or print footer in Rose Also cannot choose to turn off the page numbers. ------------------------------------------------------------------- Currently there is no workaround, short of using one of the following options to print the diagram: #1# Use Tools:Web Publisher to output diagrams to your Browser and print from the Browser. #2# http://www.rationalrose.com/addins/rosegraph.htm RoseGraph is an application designed to export diagrams from Rational Rose (v98 and higher) to different graphic file formats. This program is being provided as a free-ware for public use. #3# Use a script to move diagrams into Word: ' Example script - copy class diagrams into word ' copies all the class diagrams into word 95 in ' hierarchical order with their names. You'll probably need to ' change the template and output filenames. Const namePrefix = "Component View::" Const toolName = "cg" Sub CopyDiagram(wordApp As Object, diagram As Diagram) wordApp.Insert diagram.Name diagram.RenderToClipboard wordApp.EditPaste End Sub Sub DescendLogical(wordApp As Object, category As Category) wordApp.Insert category.Name For diagramIndex=1 To category.ClassDiagrams.Count CopyDiagram wordApp, Category.ClassDiagrams.GetAt(diagramIndex) Next For categoryIndex=1 To category.Categories.Count DescendLogical wordApp, category.Categories.GetAt(categoryIndex) Next End Sub Sub Main Dim wordApp As Object Set wordApp = CreateObject ("Word.Basic") wordApp.FileNew "c:\msoffice\templates\normal.dot" wordApp.ViewPage 'wordApp.AppMinimize wordApp.StartOfDocument DescendLogical wordApp, RoseApp.CurrentModel.RootCategory wordApp.EndOfDocument wordApp.FileSaveAs "c:\tmp\test.doc" wordApp.AppMaximize wordApp.AppShow 'wordApp.FileExit End Sub #4# Rational's SoDA for Word product incorporates Rose information including graphics into MS Word or Frame documents. For more information on SoDA please visit our web site at http://www.rational.com/products/soda/index.jtmpl With SoDA, you can automatically create documents from your Rational Rose models. You can traverse the semantic relationships in the Rational Rose model, extracting graphical and textual information to create documents customized to your specific needs. Rational Rose provides a powerful capability to create, verify, and visualize your object-oriented software analysis and design. Using SoDA, you can take this capability one step further, quickly enhancing and disseminating your information by automatically generating online or hard-copy documentation. With SoDA, you can also document your C++ source code and extract information directly from the code. Combined with the reverse-engineering capability of Rational Rose/C++, SoDA is the ideal solution for documenting legacy code. #5# Use 3'rd party report generator: DocExpress Lite: http://www.docexpress.com. generated reports include Diagrams as well. For more information, contact Rational Software Technical Support. Patrick Kennedy Rational Support -----Original Message----- From: Okun, Kiril To: '[EMAIL PROTECTED]' Sent: 1/23/2002 5:39 PM Subject: (ROSE) How to change diagram footer? ROSE prints out diagrams with the following footer format: <model file path and name> <time> <date> <diagram type and name> Unfortunately, if the name of the diagram is long it gets truncated. Is there a way remove model info and time/date from the footer to ensure that the whole diagram name is printed? Is there a way to move diagram name into the header? Thank you. Kiril Okun CapitalOne - CRS Business Analyst 208-472-6323 ************************************************************************ ** The information transmitted herewith is sensitive information intended only for use by the individual or entity to which it is addressed. If the reader of this message is not the intended recipient, you are hereby notified that any review, retransmission, dissemination, distribution, copying or other use of, or taking of any action in reliance upon this information is strictly prohibited. If you have received this communication in error, please contact the sender and delete the material from your computer. ************************************************************************ * Rose Forum is a public venue for ideas and discussions. * For technical support, visit http://www.rational.com/support * * Post or Reply to: [EMAIL PROTECTED] * Subscription Requests: [EMAIL PROTECTED] * Archive of messages: * http://www.rational.com/support/usergroups/rose/rose_forum.jsp * Other Requests: [EMAIL PROTECTED] * * To unsubscribe from the list, please send email * To: [EMAIL PROTECTED] * Subject: <BLANK> * Body: unsubscribe rose_forum *************************************************************************
