cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
The Discovery Summit 2025 Call for Content is open! Submit an abstract today to present at our premier analytics conference.
Choose Language Hide Translation Bar
View Original Published Thread

How can I open a JMP file without leaving a record in the From list?

lwx228
Level VIII

For example, open "Big class.jmp ",


Can add code to JSL's open code to keep it out of the From list?Or use JSL later to delete "Big Class.jmp"'s records from the From list?

Thanks!

dt = Open( "$SAMPLE_DATA/Big Class.jmp";??? );

2020-07-19_18-13.png

 

1 ACCEPTED SOLUTION

Accepted Solutions
Craige_Hales
Super User


Re: How can I open a JMP file without leaving a record in the From list?

I think this is what you are asking about. I find it really useful when I'm opening a lot of files, it prevents the ones I care about from falling off the bottom of the list!

Add To Recent option in Open( ) functionAdd To Recent option in Open( ) function

Craige

View solution in original post

3 REPLIES 3
Craige_Hales
Super User


Re: How can I open a JMP file without leaving a record in the From list?

I think this is what you are asking about. I find it really useful when I'm opening a lot of files, it prevents the ones I care about from falling off the bottom of the list!

Add To Recent option in Open( ) functionAdd To Recent option in Open( ) function

Craige
lwx228
Level VIII


Re: How can I open a JMP file without leaving a record in the From list?

Thank Craige!

dt1 = Open( "$SAMPLE_DATA/Big Class.jmp",Add to Recent Files(0) );
gzmorgan0
Super User (Alumni)


Re: How can I open a JMP file without leaving a record in the From list?

Another option, especially if you are scripting, is to open the file as Private. Then the file does not appear in the From list nor the Windows List.