<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comentarios en: Componente ComboBox</title>
	<atom:link href="http://www.codigometropoli.com/componente-combobox/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.codigometropoli.com/componente-combobox/</link>
	<description>Programación para Super Héroes</description>
	<lastBuildDate>Tue, 31 Aug 2010 13:41:49 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Por: elpapa</title>
		<link>http://www.codigometropoli.com/componente-combobox/comment-page-4/#comment-2652</link>
		<dc:creator>elpapa</dc:creator>
		<pubDate>Wed, 04 Aug 2010 01:56:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.codigometropoli.com/?p=27#comment-2652</guid>
		<description>hola esta muy buen a groso modo pero solo lo estoy probando; espero y todo me funcione; aunque me gustaria que me explicaras como hacer no un formulario sino un juego de decubrir la imagen identica, no tengo ni idea como empezar

gracias por todo</description>
		<content:encoded><![CDATA[<p>hola esta muy buen a groso modo pero solo lo estoy probando; espero y todo me funcione; aunque me gustaria que me explicaras como hacer no un formulario sino un juego de decubrir la imagen identica, no tengo ni idea como empezar</p>
<p>gracias por todo</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: Vivi</title>
		<link>http://www.codigometropoli.com/componente-combobox/comment-page-4/#comment-2510</link>
		<dc:creator>Vivi</dc:creator>
		<pubDate>Wed, 16 Jun 2010 17:06:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.codigometropoli.com/?p=27#comment-2510</guid>
		<description>Hola Carla, estado leyendo todo tu tutorual y me parece muy interesnate, resulta que tengo un problema y quisiera que porfavo me des una manito. Bueno te comento el problema:
Pra aempezar trabajo con Flash, amfphp, PHP y mysql
diseñe un formunario donde tengo un datagrid y dentro de uno de los campos carge un combobox, para eso utilize el cellrenderer, hice una clase para el combobox. Ahora el probelam es que no logro cargar datos en el combobox que va dentro del datagrid, teoricamente en la clase del combo es donde tengo que cargar la funcion que llena mi combobox pero no logro hacerlo, nose si tu ya manejaste eso y si me puedes ayudar, te lo agradeceria muchisimo</description>
		<content:encoded><![CDATA[<p>Hola Carla, estado leyendo todo tu tutorual y me parece muy interesnate, resulta que tengo un problema y quisiera que porfavo me des una manito. Bueno te comento el problema:<br />
Pra aempezar trabajo con Flash, amfphp, PHP y mysql<br />
diseñe un formunario donde tengo un datagrid y dentro de uno de los campos carge un combobox, para eso utilize el cellrenderer, hice una clase para el combobox. Ahora el probelam es que no logro cargar datos en el combobox que va dentro del datagrid, teoricamente en la clase del combo es donde tengo que cargar la funcion que llena mi combobox pero no logro hacerlo, nose si tu ya manejaste eso y si me puedes ayudar, te lo agradeceria muchisimo</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: LILIAN</title>
		<link>http://www.codigometropoli.com/componente-combobox/comment-page-4/#comment-2495</link>
		<dc:creator>LILIAN</dc:creator>
		<pubDate>Wed, 09 Jun 2010 20:08:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.codigometropoli.com/?p=27#comment-2495</guid>
		<description>Muchas Gracias Carla lo probare y claro tratare de ya no molestarte...

Muchas gracias de nuevo

LILIAN</description>
		<content:encoded><![CDATA[<p>Muchas Gracias Carla lo probare y claro tratare de ya no molestarte&#8230;</p>
<p>Muchas gracias de nuevo</p>
<p>LILIAN</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: Carla Macías</title>
		<link>http://www.codigometropoli.com/componente-combobox/comment-page-4/#comment-2492</link>
		<dc:creator>Carla Macías</dc:creator>
		<pubDate>Wed, 09 Jun 2010 18:34:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.codigometropoli.com/?p=27#comment-2492</guid>
		<description>Hola Lilian,

Para el envío de correos necesitas tener PHP o ASP. Este ejemplo usa PHP por lo que debes probarlo en un servidor que soporte PHP. Para descartar que sea tu servidor y no el código, crea un archivo PHP (correo.php) con este código:

[php]
&lt;?
$remitente = &quot;Remitente &lt;correo@correo.com&gt;&quot;;
$para = &quot;Carla Macias &lt;tocorreo@correo.com&gt;&quot;;
$asunto = &quot;Correo de prueba&quot;;
$mensaje = &quot;Prueba de envío de correo por PHP&quot;;
$header = &quot;MIME-Version: 1.0\nFrom: &quot; . $remitente . &quot;\n&quot;;
$header .= &quot;Content-type: text/html; charset=iso-8859-1;&quot;;
if(mail($para, $asunto, $mensaje, $header))
	echo &#039;Correo enviado&#039;;
else
	echo &#039;Problemas al enviar el correo&#039;;
?&gt;
[/php]

No olvides cambiar los correos para probar que te llegan. Salva el archivo, súbelo a tu servidor y abre la página en el navegador para ver qué te muestra.

Saludos.</description>
		<content:encoded><![CDATA[<p>Hola Lilian,</p>
<p>Para el envío de correos necesitas tener PHP o ASP. Este ejemplo usa PHP por lo que debes probarlo en un servidor que soporte PHP. Para descartar que sea tu servidor y no el código, crea un archivo PHP (correo.php) con este código:</p>
<div class="igBar"><span id="lphp-1"><a href="#" onclick="javascript:showPlainTxt('php-1'); return false;">Texto Plano</a></span></div>
<div class="syntax_hilite"><span class="langName">PHP:</span>
<div id="php-1">
<div class="php">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#2C442A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#000000; font-weight:bold;">&lt;?</span></div>
</li>
<li style="font-weight: bold;color:#0B1558;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#0000FF;">$remitente</span> = <span style="color:#FF0000;">"Remitente &lt;correo@correo.com&gt;"</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#2C442A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#0000FF;">$para</span> = <span style="color:#FF0000;">"Carla Macias &lt;tocorreo@correo.com&gt;"</span>;</div>
</li>
<li style="font-weight: bold;color:#0B1558;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#0000FF;">$asunto</span> = <span style="color:#FF0000;">"Correo de prueba"</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#2C442A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#0000FF;">$mensaje</span> = <span style="color:#FF0000;">"Prueba de envío de correo por PHP"</span>;</div>
</li>
<li style="font-weight: bold;color:#0B1558;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#0000FF;">$header</span> = <span style="color:#FF0000;">"MIME-Version: 1.0<span style="color:#000099; font-weight:bold;">\n</span>From: "</span> . <span style="color:#0000FF;">$remitente</span> . <span style="color:#FF0000;">"<span style="color:#000099; font-weight:bold;">\n</span>"</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#2C442A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#0000FF;">$header</span> .= <span style="color:#FF0000;">"Content-type: text/html; charset=iso-8859-1;"</span>;</div>
</li>
<li style="font-weight: bold;color:#0B1558;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#616100;">if</span><span style="color:#006600; font-weight:bold;">&#40;</span><a href="http://www.php.net/mail"><span style="color:#000066;">mail</span></a><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#0000FF;">$para</span>, <span style="color:#0000FF;">$asunto</span>, <span style="color:#0000FF;">$mensaje</span>, <span style="color:#0000FF;">$header</span><span style="color:#006600; font-weight:bold;">&#41;</span><span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#2C442A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <a href="http://www.php.net/echo"><span style="color:#000066;">echo</span></a> <span style="color:#FF0000;">'Correo enviado'</span>;</div>
</li>
<li style="font-weight: bold;color:#0B1558;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#616100;">else</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#2C442A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <a href="http://www.php.net/echo"><span style="color:#000066;">echo</span></a> <span style="color:#FF0000;">'Problemas al enviar el correo'</span>;</div>
</li>
<li style="font-weight: bold;color:#0B1558;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#000000; font-weight:bold;">?&gt;</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>No olvides cambiar los correos para probar que te llegan. Salva el archivo, súbelo a tu servidor y abre la página en el navegador para ver qué te muestra.</p>
<p>Saludos.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: LILIAN</title>
		<link>http://www.codigometropoli.com/componente-combobox/comment-page-4/#comment-2476</link>
		<dc:creator>LILIAN</dc:creator>
		<pubDate>Mon, 07 Jun 2010 20:03:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.codigometropoli.com/?p=27#comment-2476</guid>
		<description>UPSSS!!!! no se que pasa que no me inserta el codigo PHP pero bueno en realidad es igual al que me pusiste como ejemplo nada mas que mi variable es &quot;canciones&quot; 

De antemano Gracias!!!!

y disculpa lo latosa</description>
		<content:encoded><![CDATA[<p>UPSSS!!!! no se que pasa que no me inserta el codigo PHP pero bueno en realidad es igual al que me pusiste como ejemplo nada mas que mi variable es "canciones" </p>
<p>De antemano Gracias!!!!</p>
<p>y disculpa lo latosa</p>
]]></content:encoded>
	</item>
</channel>
</rss>
