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