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
 get window names

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
clemens Posted - 09/29/2000 : 5:04:00 PM
I need to get all window names from an already existing project and I cannot find any information in the manual. I tried it with the page.title command but I had no success.
1   L A T E S T    R E P L I E S    (Newest First)
CStorey Posted - 09/29/2000 : 6:47:00 PM
You can use the "Document" command, or doc for short. Problems: Notes windows don't appear, Matrices and Worksheets are treated the same way.

This script should help:


// Get all Window Names in Project
//
// **NOTE** the %Z formating, watch where the " start and end!


%Z="%Z
** Non Minimized: ";

doc -e O {
%Z=%Z %H;
};

%Z="%Z
** Graph Windows: ";

doc -e P {
%Z=%Z %H;
};

%Z="%Z
** Worksheet Windows: ";

doc -e W {
%Z=%Z %H;
};

%Z="%Z
** Matrix Windows: ";

doc -e W {
%Z=%Z %H;
};

type %Z;

Craig Storey

[This message has been edited by CStorey (edited 09-29-2000).]

[This message has been edited by CStorey (edited 09-29-2000).]


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