Title: RE: (ROSE) How to edit information in diagram's footer?

QUESTION:
Is there an option to suppress 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::

Also cannot choose to turn off the page numbers.

This all was possible in Rose 98i.
Please bring this back.
-------------------------------------------------------------------

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.


Patrick Kennedy
 Rational Support


-----Original Message-----
From: Lyalin, David S. [mailto:[EMAIL PROTECTED]]
Sent: Thursday, September 26, 2002 11:26 AM
To: '[EMAIL PROTECTED]'
Cc: Lyalin, David S.
Subject: (ROSE) How to edit information in diagram's footer?



A question that probably was asked before ....

Printing from Rose Modeler Edition 2002.05.00.
How to prevent a diagram's footer (with file name, date, etc) to be printed?
How to edit information in diagram's footer?

I can't find anything regarding that in Help facility.

Thank you.

David Lyalin

************************************************************************
* 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
*************************************************************************

Reply via email to