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
 file-directory (path)

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
abreiti Posted - 08/11/2008 : 08:00:13 AM
Dear forum members,

I'm always confused with the directories. Is there a possibility to get the actualy directories/path from the open menu, the ascimport menu, the save-as menu, ...

These direchtsories mustn't be the same. That's why I guess there are some variables with the file path, but which one?

Thanks,

abreiti


1   L A T E S T    R E P L I E S    (Newest First)
greg Posted - 08/12/2008 : 12:50:31 PM
Various options relating to these properties are found in Tools : Options : [File Location].

You can programmatically access this information as well:

SYSTEM.FILEEXT.ACTIVEGROUP$=ORIGIN;
%A=SYSTEM.FILEEXT.DEFPATH$;
Type Origin File Open using %A;
%A=SYSTEM.FILEEXT.SAVEPATH$;
Type Origin File Save using %A;

SYSTEM.FILEEXT.ACTIVEGROUP$=ASCII;
%A=SYSTEM.FILEEXT.DEFPATH$;
Type ASCII File Import using %A;

SYSTEM.FILEEXT.ACTIVEGROUP$=CSV;
%A=SYSTEM.FILEEXT.DEFPATH$;
Type CSV File Import using %A;

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