| 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 |