| T O P I C R E V I E W |
| tkcroat |
Posted - 11/26/2003 : 3:16:15 PM I have many temporary worksheets that I want to delete. These are worksheets automatically created using the nlsf object method in a labtalk script (named nlsf1, nlsf2, etc.). They do not show up among the available windows (somehow hidden in version 7.0), but they do exist as worksheets (e.g. exist(nlsf1)=2). The only other place they show up are as available datasets in the advanced fitting tool, and of course they increase the overall file size. If I open files containing these hidden worksheets in version 5, they are again visible as normal windows and can be removed in the normal ways. However, attempting to delete them in version 7 (eg. using "delete nslf1" in the script window) doesn't work. I still get exist(nlsf1)=2 and they won't go away, which is quite annoying since I often create hundreds of them. |
| 1 L A T E S T R E P L I E S (Newest First) |
| cpyang |
Posted - 11/26/2003 : 3:50:56 PM win -cd nlsf1;
you can loop them all with for(i=1;i<100;i++) { {win -cd nlsf$(i);} }
I put script above inside {} to allow command error and still continue to execute.
CP
|
|
|