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
 fdlog

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
LucSerre Posted - 01/20/2005 : 11:55:23 AM
Origin Version (Select Help-->About Origin): 6.1
Operating System:win2000

I try the following code and as soon as I click on the Options button, Origin crashes (disappears).

fdlog.optionDlg$=IMPASCII;
fdlog.usegroup(ASCII);
fdlog.open();
%B=fdlog.path$;
window -t matrix;
open -w B;

The import options that I want to use are always going to be the same, is there a way of coding them into my script?
2   L A T E S T    R E P L I E S    (Newest First)
LucSerre Posted - 01/20/2005 : 12:50:58 PM
Thanks!
I replied there too
Mike Buess Posted - 01/20/2005 : 12:14:34 PM
To avoid the crash you should create the matrix before you open the file dialog...

window -t matrix;
fdlog.optionDlg$=IMPASCII;
fdlog.usegroup(ASCII);
fdlog.open();
%B=fdlog.path$;
open -w B;

...Apparently ASCII options are not saved with matrix templates. (Never noticed that before!) One possibility is to import to a wks (for which you can save ASCII options) and then convert to matrix. See my reply to your other topic for details.

Mike Buess
Origin WebRing Member

Edited by - Mike Buess on 01/20/2005 12:19:14 PM

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