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
 LabTalk Forum
 copy text data into notes windows

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
zangyef Posted - 03/08/2006 : 11:11:26 AM
Origin Version 6:
Operating System: WinXP Home

Hi everyone,
I would like to know if there is a method to copy text data from a datasheet into a notes window in the project.
I import an ASCII file that contains in the last 6 cell of Data1_A some value that I need to store. I know that I can access that data with the command %A=Data1_A[i]$; but I don't know how to copy the content of the %A variable in the notes window created.
Thank you

2   L A T E S T    R E P L I E S    (Newest First)
zangyef Posted - 03/09/2006 : 04:20:09 AM
Thanks Myke, I tried and all works well. I should had to read help file before to post...

Mike Buess Posted - 03/08/2006 : 5:46:31 PM
Try this...

type.notes$=Notes; // name of Notes window
saveredirection=type.redirection;
type.redirection=2; // redirect type command to designated Notes window
%A=Data1_A[i]$;
type %A;
// enter more stuff with type command
type.redirection=saveredirection; // stop redirecting when done

Mike Buess
Origin WebRing Member

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