cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
JMP is taking Discovery online, April 16 and 18. Register today and join us for interactive sessions featuring popular presentation topics, networking, and discussions with the experts.
Choose Language Hide Translation Bar
lwx228
Level VIII

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

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.