T O P I C R E V I E W |
juergenkemeter |
Posted - 11/24/2006 : 07:17:39 AM Origin Version (Select Help-->About Origin): 7.0300 Operating System: Windows 2000
Hi,
I want to create plots on the basis of table data. Are there Labtalk - Commands which do the following: - Display the plot on full screen - Hide the Toolbar "Project Explorer"
Cheers, Jürgen |
1 L A T E S T R E P L I E S (Newest First) |
Mike Buess |
Posted - 11/24/2006 : 08:12:13 AM Hi Jürgen,
The LabTalk command plot -s will display the active window full screen.
There is no LabTalk command to hide the Project Explorer, however, if you add the following Origin C function to CodeBuilder's workspace (here's how) you can use pe_show 1 and pe_show 0 to show and hide the Project Explorer, respectively. If the function won't compile then you need to apply the Origin 7.0 SR4 patch.
void pe_show(bool bShow = true) { Project.ShowWindow(CWT_PROJECT_EXPLORER, bShow); }
Mike Buess Origin WebRing Member |
|
|