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
 Adding string data to text columns

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
sheinb Posted - 07/17/2002 : 6:09:14 PM
Does anyone have sample code for adding text to a column from Origin C? I've tried using both wks.SetCell(row, col, text) as well as directly accessing the column's dataset (both of these after changing the column format OKCOLTYPE_TEXT...). But I never see my strings appear.

Thanks

David Sheinberg
1   L A T E S T    R E P L I E S    (Newest First)
cpyang Posted - 07/17/2002 : 6:21:31 PM
I think it is because you need to call SetSize on Dataset level before those cells can be set. Here is code sample

void test()
{
Worksheet wks = Project.ActiveLayer();

if(NULL==wks)
return;

int nMaxRows = 10;

for(int ii = 0; ii < wks.GetNumCols(); ii++)
{
Dataset dd(wks, ii);
dd.SetSize(nMaxRows);// need to set size before using
}

wks.SetCell(0,0,"Cell(A1)");
wks.SetCell(1,0,PI);
wks.SetCell(2,0,"Cell(A3)");
}





Edited by - cpyang on 07/17/2002 10:56:47 PM

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