Ver Mensaje Individual
  #1  
Antiguo 24-08-2010
Avatar de julyus
julyus julyus is offline
Miembro
 
Registrado: jul 2006
Ubicación: IN TO PLACES COLOMBIA AND EE.UU
Posts: 121
Reputación: 18
julyus Va por buen camino
Question funcion que me regresa un arreglo

hola amigo hace 3 años no programo en delphi algunas cosas las he olvidado quiero crear una function que me regrese un array

ejemplo
Código Delphi [-]
type
    TEventslistArray = array[0..58] of string;



Código Delphi [-]
function TFMListenerService.SearchEvents( NewEventlistArray: TEventslistArray);
var
count : integer;
begin
end;

mi pregunta es que tengo que enviarle 25 parametros a esta funcion para evaluarlos dentro de esta debo nombrar los 25 parametro y sus tipos de campo diciendo que NewEventlistArray me devolvera mi arreglo ya evaluado??

asi??

Código Delphi [-]
function TFMListenerService.SearchEvents(a : integer,b : string ,d... NewEventlistArray: TEventslistArray);
var
count : integer;
begin
end;

gracias si alguien me explica
Responder Con Cita