キャンセル
次の結果を表示 
表示  限定  | 次の代わりに検索 
もしかして: 

Discussions

Solve problems, and share tips and tricks with other JMP users.
言語を選択 翻訳バーを非表示
robot
Level VI

Open Text File with Non-Standard Extension

Is there an easy way for JSL to open a text file with a non-standard file extension?  For example: I would like to open a text file with an extension like ".ridiculous", but JMP is not able to select this file using Open() dialog.  Any ideas?  I am using JMP 18.0.1.

1 件の受理された解決策

受理された解決策
jthi
Super User

Re: Open Text File with Non-Standard Extension

And if you are building UI and wish to have more customization options you can use Pick File()

Names Default To Here(1);
filepath = Pick File(
	"Select JMP File",
	"$DOCUMENTS",
	{"All Files|*"},
	1,
	0,
	"newJmpFile.jmp"
);

If(IsMissing(filepath),
	Throw("No file selected");
);

dt = Open(filepath);
-Jarmo

元の投稿で解決策を見る

4件の返信4
jthi
Super User

Re: Open Text File with Non-Standard Extension

Change the selection to All Files

jthi_0-1730828174657.png

 

-Jarmo
jthi
Super User

Re: Open Text File with Non-Standard Extension

And if you are building UI and wish to have more customization options you can use Pick File()

Names Default To Here(1);
filepath = Pick File(
	"Select JMP File",
	"$DOCUMENTS",
	{"All Files|*"},
	1,
	0,
	"newJmpFile.jmp"
);

If(IsMissing(filepath),
	Throw("No file selected");
);

dt = Open(filepath);
-Jarmo
robot
Level VI

Re: Open Text File with Non-Standard Extension

Thank you!

AlmaHall
Level I

Re: Open Text File with Non-Standard Extension

Thank you so much.

おすすめの記事