| T O P I C R E V I E W |
| 5*10 |
Posted - 03/23/2006 : 08:34:20 AM Origin Version (Select Help-->About Origin): origin 7G SR2 Operating System:win 2k
Hi, is there any possibility to select several named labels (leg1, leg2..). After the selection I want to group them.
Will be nice if someone can help me
Greets 5*10
|
| 3 L A T E S T R E P L I E S (Newest First) |
| Mike Buess |
Posted - 03/23/2006 : 10:05:04 AM LabTalk's getn command can ask for up to six numeric or string variables. This asks for and returns six string variables...
getn (string 1) %%A (string 2) %%B (string 3) %%K (string 4) %%L (string 5) %%M (string 6) %%N (Enter strings...); %A=; %B=; %K=; %L=; %M=; %N=;
Mike Buess Origin WebRing Member |
| 5*10 |
Posted - 03/23/2006 : 09:49:34 AM Thanks a lot.
But I have another question, Is there a posability to get a messagebox with the possibility to enter more than one string values
Greets
5*10
|
| Mike Buess |
Posted - 03/23/2006 : 08:44:51 AM page -s leg1; // select leg1 (this will clear the current selection first) page -sa leg2; // also select leg2 page -sa leg3; // also select leg3 select -rg; // group selections
Mike Buess Origin WebRing Member
Edited by - Mike Buess on 03/23/2006 08:45:45 AM |