DIAdem

cancel
Showing results for 
Search instead for 
Did you mean: 

an easy way to view the layout of multiple layout files

Dear members,
 
I have a little question about the layout files. Is there a way to easily open / view the layout of layout files? I have a directory full of different layout files but do not know which file is which layout. I know one way, and that is opening them one by one in diadem. Is there a way to view it more easily? And maybe a way i can print them?
 
TIA
 
Dannie 
0 Kudos
Message 1 of 2
(3,284 Views)
Hi Dannie,

there is an easy way to create a script for this task.

In the SCRIPT options you find the option "serial evaluation" which has to be switched on. After this, DIAdem will create two files if you start the recording mode. In addition to the script you get an LST file with a list of names. In recording mode, you can now mark a large number of files. All names are written to the list but only one of them will be loaded. If you run the script later, all files from the list are going to be loaded in a loop.

This is the script after I have loaded a Layout by marking a number of layout files (I added the pause(1) later by hand:

Option Explicit  'Forces the explicit declaration of all the variables in a script.
Call PicLoad(UseFileList)               '... PicFile
Call PicUpdate(0)                       '... PicDoubleBuffer
pause(1)

This is the LST-File:

ADOExample_Result {... REPORT layout file (extension TDR)                  ...}
2D_AS_2Y   {... REPORT layout file (extension TDR)                         ...}
2D_AS_BD   {... REPORT layout file (extension TDR)                         ...}

...

3D_AS_PA   {... REPORT layout file (extension TDR)                         ...}
3D_AS_SP   {... REPORT layout file (extension TDR)                         ...}
3D_TAB     {... REPORT layout file (extension TDR)                         ...}
ADOExample_ADO_Scal {... REPORT layout file (extension TDR)                ...}
ADOExample_Main {... REPORT layout file (extension TDR)                    ...}

Hope that helps
Ulrich




0 Kudos
Message 2 of 2
(3,260 Views)