cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • JMP will suspend normal business operations for our Winter Holiday beginning on Wednesday, Dec. 24, 2025, at 5:00 p.m. ET (2:00 p.m. ET for JMP Accounts Receivable).
    Regular business hours will resume at 9:00 a.m. EST on Friday, Jan. 2, 2026.
  • We’re retiring the File Exchange at the end of this year. The JMP Marketplace is now your destination for add-ins and extensions.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
seburke89
Level III

Make an invisible data table visible

I have a data table that I make invisible by default in a jsl script. I'd like to make a button that makes the data table visible - is there a function to do this in JMP 11?

Thanks!

Sarah

1 ACCEPTED SOLUTION

Accepted Solutions
Eric_Hill
Staff

Re: Make an invisible data table visible

You want the ShowWindow message:

dt = open( "$SAMPLE_DATA\Big Class.jmp", Invisible );

dt << ShowWindow( 1 );

Pass 0 to ShowWindow() to hide it.  1 seems to be the default.

HTH,

Eric

View solution in original post

2 REPLIES 2
Eric_Hill
Staff

Re: Make an invisible data table visible

You want the ShowWindow message:

dt = open( "$SAMPLE_DATA\Big Class.jmp", Invisible );

dt << ShowWindow( 1 );

Pass 0 to ShowWindow() to hide it.  1 seems to be the default.

HTH,

Eric

seburke89
Level III

Re: Make an invisible data table visible

Thanks - I knew it was a simple command - just couldn't find it!

Sarah

Recommended Articles