- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Create Jmp file from C#
I want to create a jmp file with a simple spreadsheet like below using C#. How can I achieve that? I will appreciate any pointers or sample code.
Name Salary
John 70000
Mike 80000
Michelle 90000
Thanks,
Shrish
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Create Jmp file from C#
Your JMP install contains a C# example that describes how to automate JMP. It is typically found under the folder C:\Program Files\SAS\JMP\13\Samples\Automation\Visual C# Sample\JMPStarter .
Brian Corcoran
JMP Development
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Create Jmp file from C#
Your JMP install contains a C# example that describes how to automate JMP. It is typically found under the folder C:\Program Files\SAS\JMP\13\Samples\Automation\Visual C# Sample\JMPStarter .
Brian Corcoran
JMP Development
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Create Jmp file from C#
Thank you.
But The sample project has an reference named ''JMP", so where can i get it please?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Create Jmp file from C#
JMP must be added as a reference to your project, after you locate the jmp.tlb file that is installed (c:\program files\sas\jmp\14). The Automation Reference.pdf that is supplied with the JMP Documentation contains the steps to do this.
Brian Corcoran
JMP Development
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Create Jmp file from C#
And I know how to add but I can not find where is JMP.dll file, can you please?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Create Jmp file from C#
thank you .
And I know how to add but I can not find where is JMP.dll file, can you please?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Create Jmp file from C#
okay
I found it in folder:
D:\Program Files\SAS\JMP\13\Samples\Automation\Visual CSharp Sample\JMPStarter\obj\Debug\Interop.JMP.dll
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Create Jmp file from C#
yes , i also meet this issue;
if i didnot install JMP software ,but i want use C# Creat JMP file,how can I do ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Create Jmp file from C#
Without JMP installed you can't create a .JMP data table (which is a binary format.)
You can create a .JSL file (text) that will open as a data table. You can also create other formats JMP will open, including .CSV, .JSON, etc
Some of these formats are for data.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Create Jmp file from C#
JMP provides a C# example in the sample code that is installed when you install JMP. Here is the path to the JMP 13 version
C:\Program Files\SAS\JMPPRO\13\Samples\Automation\Visual CSharp Sample