T O P I C R E V I E W |
alex_eagle |
Posted - 02/23/2002 : 12:07:58 PM Hi, in a script I make a worksheet with the create -w command, then I add columns with the worksheet -a command. But its not possible to set values in the worksheet with script for rows greater than 30 ? e.g. %(%H,3,31)=5 leads to a command error ? Does somebody know this problem ? Thanks
|
1 L A T E S T R E P L I E S (Newest First) |
Mike Buess |
Posted - 02/23/2002 : 4:10:09 PM New columns, like worksheets created with win -t Data, have only 30 rows. You need to use the set command after adding columns.
create test -w 64; // create wks named test with 2 columns, 64 rows wo -a 1; // add a column set test -er 64; // set the number of rows to 64 again %(%H,3,31)=5; // no error
See this topic for a related discussion.
Mike Buess Origin WebRing Member |
|
|