The Origin Forum
File Exchange
Try Origin for Free
The Origin Forum
Home | Profile | Register | Active Topics | Members | Search | FAQ | Send File to Tech support
 All Forums
 Origin Forum for Programming
 Forum for Origin C
 Getting information

Note: You must be registered in order to post a reply.
To register, click here. Registration is FREE!

Screensize:
UserName:
Password:
Anti-Spam Code:
Format Mode:
Format: BoldItalicizedUnderlineStrikethrough Align LeftCenteredAlign Right Horizontal Rule Insert HyperlinkUpload FileInsert Image Insert CodeInsert QuoteInsert List
   
Message:

* HTML is OFF
* Forum Code is ON
Smilies
Smile [:)] Big Smile [:D] Cool [8D] Blush [:I]
Tongue [:P] Evil [):] Wink [;)] Clown [:o)]
Black Eye [B)] Eight Ball [8] Frown [:(] Shy [8)]
Shocked [:0] Angry [:(!] Dead [xx(] Sleepy [|)]
Kisses [:X] Approve [^] Disapprove [V] Question [?]

 
Check here to subscribe to this topic.
   

T O P I C    R E V I E W
bf1978 Posted - 05/18/2005 : 6:23:41 PM
Hi,
how is it possible to find out all the information about a dataset using Origin C? I want to give a dataset name and I would like to get the worksheet name, the other datasets in the worksheet etc.

Thanks,
bf
1   L A T E S T    R E P L I E S    (Newest First)
Mike Buess Posted - 05/18/2005 : 9:05:58 PM
Dataset name...

string sName = ds.GetName();


Worksheet and all column names...

Worksheet wks = Project.ActiveLayer();
out_str(wks.GetPage().GetName());
foreach(Column col in wks.Columns)
{
out_str(col.GetName());
}


Mike Buess
Origin WebRing Member

The Origin Forum © 2020 Originlab Corporation Go To Top Of Page
Snitz Forums 2000