At 03:58 AM 24/12/2006, Stan wrote:

Hi,

   I am writing a routine to manipulate an array of type extended.
Various other routines will call this routine, and the size of the
array to be passed will vary.

Hi Stan,

I've done this before by defining a type for the array, something like
   type
      TIntArr = array[1..20] of integer;

you can then declare your routine
   function something(var myarray:TIntArray)

Cheers,
Chris.

_______________________________________________
Delphi mailing list -> Delphi@elists.org
http://www.elists.org/mailman/listinfo/delphi

Reply via email to