<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"><channel><category>pcsoft.es.webdev</category><copyright>Copyright 2026, PC SOFT</copyright><lastBuildDate>13 Nov 2024 23:28:05 Z</lastBuildDate><pubDate>13 Nov 2024 23:28:05 Z</pubDate><description>Hola a todos, No logro todavia poder llenar en un  TABLE CONTROL, una columna que puede almacenar varios valores. Estoy intentando llenar un list en la columna. Este codigo es el que utilizo para leer los datos, y guardarlos en la variable ListaActas para luego asignarla a la columna de la tabla.  ¿Alguno podria orientarme?&#13;
&#13;
gracias!!&#13;
&#13;
SQLCode		        is string&#13;
SQLCode2		is string&#13;
DS				is Data Source&#13;
DS2				is Data Source&#13;
convenio                 is numeric &#13;
ListaActas                is array of int&#13;
&#13;
&#13;
&#13;
SQLCode = StringBuild(SQLCode,sCuit,sDesde,sHasta)&#13;
IF HExecuteSQLQuery(DS, SQLCode) THEN&#13;
	FOR EACH DS&#13;
                &#13;
               //desde aqui estoy intentando llenar el List en el table control&#13;
		convenio	= DS.NroConvenio&#13;
		&#13;
		SQLCode2 = [&#13;
			SELECT DISTINCT &#13;
			ac.nNroActa AS nNroActa&#13;
			FROM &#13;
			(&#13;
			ConvenioDeuda cd&#13;
			INNER JOIN&#13;
			Anexo an&#13;
			ON an.nIDConvenioDeuda = cd.nIDConvenioDeuda&#13;
			)&#13;
			INNER JOIN&#13;
			Acta ac&#13;
			ON ac.nIdActa = an.nIdActa&#13;
			WHERE cd.nNroConvenioDeuda = '%1'&#13;
		]&#13;
		&#13;
		ListaActas.DeleteAll()              				  &#13;
		SQLCode2 = StringBuild(SQLCode2,convenio)&#13;
&#13;
		IF HExecuteSQLQuery(DS2, SQLCode2) THEN&#13;
			FOR EACH DS2   &#13;
				Add(ListaActas, DS2.nNroActa)&#13;
			END&#13;
		END&#13;
&#13;
	&#13;
		TableAddLine(TABLE_ACTAS, DS.NroConvenio,  ListaActas)&#13;
&#13;
		HFreeQuery(DS2) &#13;
  END&#13;
 &#13;
END&#13;
HFreeQuery(DS)</description><ttl>30</ttl><generator>WEBDEV</generator><language>es_ES</language><link>https://forum.pcsoft.fr/es-ES/pcsoft.es.webdev/1161-list-una-columna-table-control/read.awp</link><title>List en una columna de un  TABLE CONTROL</title><managingEditor>moderateur@pcsoft.fr (El moderador)</managingEditor><webMaster>webmaster@pcsoft.fr (El webmaster)</webMaster></channel></rss>
