- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
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
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Make an invisible data table visible
Thanks - I knew it was a simple command - just couldn't find it!
Sarah