12-27-2006 06:57 AM
12-27-2006 10:03 AM
Hello Michael!
You can use a simple 2D Table for this. Unfortunately 'GraphSheetName' is a procedure with the result in 'GraphSheetName'. To use this in a table you have to make a user command like this:
Option Explicit
Public Function GraphSheetNameGet(ByRef nSheet)
If nSheet <= GraphSheetCount Then
Call GraphSheetNGet(nSheet)
GraphSheetNameGet = GraphSheetName
Else
GraphSheetNameGet = ""
End If
End Function
Add to your table a expression column with '@@GraphSheetNameGet(D2TabRow)@@' as expression and '@@GraphSheetCount@@' as your row count. To get a Page number add another expression column with '@D2TabRow@' as expression. If you want to use a fixed table length you need another user command for a nice page number.
Sorry, there are no hyperlinks in DIAdem!
Matthias
Matthias Alleweldt Project Engineer / Projektingenieur | Twigeater? |
12-27-2006 11:04 AM
For hyperlink capability, it seems as though it might be possible to write a script that would export your REPORT to HTML, and then insert some text in your HTML page to have a list of all of your sheets with hyperlinks, etc. I have not used the HTML export much myself though, so I'm probabaly not the best one to give advice!
Julia