01-14-2011 01:56 PM
When I open up Diadem fresh and run this command it doesnt do anything. Meaning I dont see the report tab that was imported in the REPORT view. If I run the same script again then it shows. I tried the Call PicUpdate command after it too. That doesnt do anything either.
Call PicFileAppend("path\fileName.TDR")
Solved! Go to Solution.
01-17-2011 05:57 PM
Hi Anne,
What version of DIAdem are you using? I tried to replicate the problem by running the following script but everything works fine.
Let me know if this works for you.
Regards,
01-18-2011 10:49 AM
Hi Sean
I am using Diadem 11.1
It happens only the first time the script is run after Diadem is launched. After that it works fine.
I've tried different TDR files as well.
Thanks
Anne
01-18-2011 10:07 PM
Hi Anne,
If the REPORT panel has never been opened, then you need to programmatically open the REPORT panel before calling any REPORT functions-- try inserting this command at the top of your script:
Call WndShow("REPORT")
Brad Turpin
DIAdem Product Support Engineer
National Instruments
01-19-2011 06:37 AM
Thanks Brad. That works.
-Anne