- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
How to bring a table to 1st level ?
Hi,
I have a script that creates lots of table.
in some specific case, I am defining a table as current to work on it,
dt = data table("name of my table");
but I would like also to visualize it as a sanity check, in the script.
I have not been able to find any hint in the help pdf file with Bring, 1st level, etc...
I try something like
obj = current data table (dt);
obj << show table(1);
but no success.
I probably do not use the right keyword, but I am still stuck with this.
Any help would be greatly appreciated
Best
J2S
1 ACCEPTED SOLUTION
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: How to bring a table to 1st level ?
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: How to bring a table to 1st level ?
dt << bringWindowToFront;
Craige
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: How to bring a table to 1st level ?
Thank you for the help