| 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; |
|
|