The Origin Forum
File Exchange
Try Origin for Free
The Origin Forum
Home | Profile | Register | Active Topics | Members | Search | FAQ | Send File to Tech support
 All Forums
 Origin Forum for Programming
 LabTalk Forum
 delete all workbook

Note: You must be registered in order to post a reply.
To register, click here. Registration is FREE!

Screensize:
UserName:
Password:
Anti-Spam Code:
Format Mode:
Format: BoldItalicizedUnderlineStrikethrough Align LeftCenteredAlign Right Horizontal Rule Insert HyperlinkUpload FileInsert Image Insert CodeInsert QuoteInsert List
   
Message:

* HTML is OFF
* Forum Code is ON
Smilies
Smile [:)] Big Smile [:D] Cool [8D] Blush [:I]
Tongue [:P] Evil [):] Wink [;)] Clown [:o)]
Black Eye [B)] Eight Ball [8] Frown [:(] Shy [8)]
Shocked [:0] Angry [:(!] Dead [xx(] Sleepy [|)]
Kisses [:X] Approve [^] Disapprove [V] Question [?]

 
Check here to subscribe to this topic.
   

T O P I C    R E V I E W
kdsaransh Posted - 04/30/2015 : 01:38:29 AM
Hello,

I have a small problem to solve.

I have many workbooks and i want to delete all but not a particular one. How can i do this.

in general, I just want to delete all the workbooks that i had imported.i don't want to delete those workbooks that i had created.

Thanks in advance.

Regards,
Rajesh

2   L A T E S T    R E P L I E S    (Newest First)
kdsaransh Posted - 05/01/2015 : 12:37:39 AM
Hi, Thanks

Sorry, i think i messed up.

I just want to delete all workbooks but not a particular one.

Thanks
JRoby Posted - 04/30/2015 : 4:48:19 PM
Since imports create metadata storage containing the source filename and your 'created' books presumably do not, this script will delete all workbooks that DO have a stored filename:

doc -e W {
str$ = page.info.system.import.filename$;
if(str.GetLength() > 0) win -cd;
}

The Origin Forum © 2020 Originlab Corporation Go To Top Of Page
Snitz Forums 2000