Ver Mensaje Individual
  #7  
Antiguo 30-03-2004
Avatar de Magician^
Magician^ Magician^ is offline
Miembro
 
Registrado: mar 2004
Ubicación: Lima - Perú
Posts: 74
Reputación: 23
Magician^ Va por buen camino
No se si te servirá esto:

Código:
Converts a list of null terminated strings to a string list.
 
procedure MultiSzToStrings(const Dest: TStrings; const Source: PChar);
 
Unit
JclStrings
 
Parameters
 
const Dest: TStrings
The string list to receive the individual strings.
 
const Source: PChar
The source string to extract the items from.
 
Description
 
Source is assumed to be a list of strings, separated by a NULL character,
terminated by a double NULL character. For example
'Project#0JEDI#0Rules#0#0'. The function takes this string and copies the
individual strings to the string list. Thus, after executing this function with
the above string the Dest list will contain the items 'Project', 'JEDI' and 'Rules'.
Salu2
__________________
MAGICIAN^
Lima - Perú
=======
MagicTech.blogspot.com

Última edición por Magician^ fecha: 30-03-2004 a las 07:03:45.
Responder Con Cita