Book a Demo

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Marc Walter

Pages: [1]
1
General Board / Re: Linking Sequence and Class Diagrams
« on: November 21, 2003, 04:22:02 am »
While in the sequence diagram, when editing or creating a message between classes, there is a NEW button on the dialog.  This allows you to create a new operation in the destination class.  Once you have created this operation,  you can select it in the dropdown list for the message.

This should meet your needs.

Marc

2
General Board / Re: Usability Questions on Class Diagrammer (EA3.5
« on: June 12, 2003, 05:08:17 am »
For number 3, just right click on a package and select move up, move down to position it as desired.  The packages are put in the report in the displayed order.

Marc

3
General Board / Re: Automation in VB.Net
« on: August 29, 2002, 10:08:54 am »
Darren,

The following is working for me:

Public Class EADump
  Public m_Repository As Object
  Private m_rtf As New RTF()

  ' Run the main report
  Public Sub Run(ByVal sInFilename As String, ByVal sOutFilename As String)
     Try
        '  create object
        m_Repository = CreateObject("EA.Repository")
        m_Repository.openfile(sInFilename)

        '  open output file
        m_rtf.OpenFile(sOutFilename)

        '  Dump - this is the report
        DumpModel()

        '  Close things
        m_rtf.CloseFile()

        '  close repository
        m_Repository.exit()
        m_Repository = Nothing
     Catch e As Exception
        m_rtf.WriteParagraph(e.Message)
     End Try
  End Sub
....

4
General Board / Help -RTF Doc - No linefeeds in attribute notes
« on: August 23, 2002, 01:27:32 pm »
I have entered notes for attributes in table definitions with carriage returns to format the text. It looks fine in EA.  When I generate RTF output,  the linefeeds are ignored - all of the lines have been smashed together - is this a feature or do I have something setup wrong?  This is just happening in attribute notes it seems.

Thanks

5
General Board / Re: Printing Use Case Scenarios
« on: August 23, 2002, 01:23:52 pm »
Generate RTF documentation and click "For each object include - Scenarios"
Marc

6
General Board / Sequences in relationship matrix?
« on: June 24, 2002, 02:13:09 pm »
I can't seem to see sequences in the relationship matrix.  I'd like to see the relationship of sequences to use cases if possible.  Specifically, which sequences implement which use cases. Am I missing something obvious?

Pages: [1]