Re: [ql-users] SMSQ/E v3.01

2003-07-07 Thread Wolfgang Lenerz

On 5 Jul 2003, at 18:12, Colin Parsons wrote:

> 
> Pity that the registration of www.wlenerz.com seems to have expired!
> 

Oh right,thanks for telling me,  I never noticed.

H.

Wolfgang

-
www.wlenerz.com


Re: [ql-users] Quanta Workshop in Norwich

2003-07-07 Thread Tarquin Mills

Geoff Wicks wrote:
> Tarquin Mills wrote:
> >>Tarquin Mills wrote:
> >>>Suggested dates are March 6,7,13,14,20,21,27,28, please pick one.
> >>>Possible
> >>>times are 10pm to 5pm.
> > Would people prefer a different month?
[snip]
> I know at one time Manchester were thinking of holding a workshop once 
> every two years so that they could host the AGM. The idea being that it 
> could be north and south alternate years. I do not know if they still 
> plan a workshop in 2004. An added complication is that QUANTA usually 
> insists that a well established workshop hosts their AGM.
[snip]
> I still think it important that we have a Norwich show. You have a 
> started a user group in the area, which is quite an achievement these 
> days and this deserves recognition from the rest of the QL community.
To say I have created a group is sadly an over statement, in the main it
is just myself and Arnold Clarke who meet twice a month. I would love to
get more members, in fact I would like to do something to help the QL in 
general after having wasted all this year so far doing politics. Given the 
size of our group I see two options

  1. Move the Cambridge-show/radio-rally (which was February this year)
 to Norwich to serve East Anglia. Have it as a low key affair, 
 apologises if I am treading on peoples toes.
  2. Hold the Quanta AGM (or some other event) that will draw people in,
 to Norwich. We do not have experience of holding events, my mother
 (who will help) needs convincing we can, she also wants to know
 what entering a bid entails. 

-- 
Tarquin Mills 

RUNG (RISC OS Users, Norfolk Group)


Re: [ql-users] Dynamic arrays?

2003-07-07 Thread wlenerz

Hi all,

I wonder whether anybody out there has come across the same 
problem I have, (and has found a solution).


Basically, what I would like is to be able to re-dimension an array within 
a subroutine (proc/fn) BY PASSING THE SUBROUTINE THE ARRAY 
AS A PARAMETER.

For example, I have an array f$ (10,10) and a variable 'mycount%' 
which contains the last element of the array that is filled in.

>From time to time, a new element of the array must be fileld in, and 
mycount% makes sure that I use an, up to now, unused element of the 
array for that - and also that I don't go over the top of the array.
Since I do that with several arrays, whenever I fill in an element in the 
array, I'd like to use some sort of procedure, which could be as follows:

def proc check_array(array$,count%,new_string_to_add$)
local a%,b%,temp_array$
  a%=dimn(array$,1)
  if count%