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
 Origin Forum
 Focus stays on the active window while duplicate

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
alaudo Posted - 08/31/2005 : 1:31:07 PM
Origin Version (Select Help-->About Origin): 6.5
Operating System: WinXP

I am not sure whether it is a bug, but it disturbs me what whenever I duplicate a worksheet I have to look for the new worksheet, the focus stays on the original worksheet. Usually I produce a worksheet with designated columns and different formula and use them as templates for data processing -- so, if I duplicate a worksheet, it is highly probably I'll change something in the copy, rather than in original. Why not to give focus to the new worksheet?

Sorry for grumbling,
Alexander.



3   L A T E S T    R E P L I E S    (Newest First)
Mike Buess Posted - 08/31/2005 : 2:28:51 PM
Hi Alexander,

I'm pretty sure there never was a version 6.5 so you probably have 6.1. Do Help > About Origin to find out. The Custom Routine button is easiest to set up and the details are explained here...

http://www.originlab.com/www/support/resultstech.aspx?ID=655&language=English

User-defined buttons are explained in the manual but I don't have 6.1 here at work so I can't say where exactly. This link might help...

http://www.originlab.com/www/support/resultstech.aspx?ID=476&language=English

There is also a multimedia tutorial about creating toolbars available here...

http://www.originlab.com/index.aspx?s=9&lm=72

If it turns out you have Origin 7.0 look at this...

Help > Origin > Setting Your Preferences > Customizing Toolbars

Mike Buess
Origin WebRing Member

Edited by - Mike Buess on 08/31/2005 2:33:18 PM

Edited by - Mike Buess on 08/31/2005 3:10:46 PM
alaudo Posted - 08/31/2005 : 2:13:34 PM
Hi, Mike,

I am puzzled a little bit. There are two versions of Origin I run: I have a private version of Origin, which I suppose to be 6.5 (I don't remember actually, but I believed it to be 6.5). Here, in my home institution they own the version 6.1, which I have to stick to, since they don't allow me to use any software rather than provided by them.

Could you, please, tell me in more details how one can create his own button?

In general, is there a good book about Origin? I've been working with it since the version 2 (16 bit) and the most experienced user in the department, still, I use only about 10% of its power. How could I learn more?

Regards,
Alexander.

Mike Buess Posted - 08/31/2005 : 2:01:34 PM
Hi Alexander,

Origin 6.5?

That's the way duplicate has always worked and I don't understood the logic either. You can create your own duplicate button that runs this script...

stat=exist(%H);
win -d;
switch(stat) {
case 2: doc -e W {%W=%H}; break;
case 3: doc -e P {%W=%H}; break;
case 5: doc -e M {%W=%H}; break;
default: %W="";
};
if(%W!="") win -a %W;

That will bring the new wks, graph or matrix window to the front. (It merely activates the newest window.)

...Depending on what version of Origin you really have this shorter script might work. It looks for the newest unminimized window.

%W="";
win -d;
doc -e O {%W=%H};
if(%W!="") win -a %W;

Mike Buess
Origin WebRing Member

Edited by - Mike Buess on 08/31/2005 2:08:31 PM

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