<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=us-ascii">
<TITLE>Message</TITLE>

<META content="MSHTML 6.00.6000.16544" name=GENERATOR></HEAD>
<BODY>
<DIV><FONT face=Arial color=#0000ff size=2></FONT> </DIV>
<BLOCKQUOTE dir=ltr 
style="PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #0000ff 2px solid; MARGIN-RIGHT: 0px">
  <DIV></DIV>
  <DIV class=OutlookMessageHeader lang=fr dir=ltr align=left><FONT face=Arial 
  color=#0000ff size=2></FONT><BR><BR>Thanks, but that is not my expected 
  answer, my ask about "dynamic array of record" and without define a variable 
  to pass it by params, for example i can pass the params for array of string 
  like this<BR><BR>func2(['t1', 't1']); this work, but i want to extend the 
  params info?<BR><BR></DIV></BLOCKQUOTE>
<DIV dir=ltr><SPAN class=000241818-09022012>You can use a small helper function 
like this:</SPAN></DIV>
<DIV dir=ltr><SPAN class=000241818-09022012><FONT face=Arial color=#0000ff 
size=2></FONT></SPAN> </DIV>
<DIV dir=ltr><SPAN class=000241818-09022012><FONT face=Arial color=#0000ff 
size=2></FONT></SPAN> </DIV>
<DIV dir=ltr><SPAN class=000241818-09022012><FONT face=Arial color=#0000ff 
size=2>type<BR>  TInfo=record<BR>    s: 
string;<BR>    i: integer;<BR>  end;<BR></FONT></SPAN></DIV>
<DIV dir=ltr><SPAN class=000241818-09022012><FONT face=Arial color=#0000ff 
size=2>  function makeinfo(s:string;i:integer):TInfo;<BR>  
begin<BR>    result.s:=s;<BR>    
result.i:=i;<BR>  end;<BR></FONT></SPAN></DIV>
<DIV dir=ltr><SPAN class=000241818-09022012><FONT face=Arial color=#0000ff 
size=2>...</FONT></SPAN></DIV>
<DIV dir=ltr><SPAN class=000241818-09022012><FONT face=Arial color=#0000ff 
size=2></FONT></SPAN> </DIV>
<DIV dir=ltr><SPAN class=000241818-09022012><FONT face=Arial color=#0000ff 
size=2>  func1([makeinfo('test1', 1), makeinfo('test2', 
2)]);<BR></FONT></SPAN></DIV>
<DIV dir=ltr><SPAN class=000241818-09022012><FONT face=Arial color=#0000ff 
size=2></FONT></SPAN> </DIV>
<DIV dir=ltr><SPAN class=000241818-09022012><FONT face=Arial color=#0000ff 
size=2><FONT face="Times New Roman" color=#000000 
size=3> Ludo</FONT></DIV></FONT></SPAN></BODY></HTML>