<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Ayuda con tus Tareas</title>
	<atom:link href="http://ayuda.fotopex.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://ayuda.fotopex.com</link>
	<description>En forma fácil</description>
	<lastBuildDate>Wed, 10 Mar 2010 23:51:39 +0000</lastBuildDate>
	
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Escribir datos de un OleDbDataReader a un archivo de texto</title>
		<link>http://ayuda.fotopex.com/programacion/net/escribir-datos-de-un-oledbdatareader-a-un-archivo-de-texto/</link>
		<comments>http://ayuda.fotopex.com/programacion/net/escribir-datos-de-un-oledbdatareader-a-un-archivo-de-texto/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 23:46:01 +0000</pubDate>
		<dc:creator>Mr. FotoPex</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Archivos]]></category>
		<category><![CDATA[Tabla]]></category>
		<category><![CDATA[Texto]]></category>
		<category><![CDATA[Visual Basic]]></category>

		<guid isPermaLink="false">http://ayuda.fotopex.com/?p=744</guid>
		<description><![CDATA[OleDbDataReader proporciona el modo de lectura de una secuencia de filas de datos de tipo sólo avance de un origen de datos. Esta clase no se puede heredar. 
Para crear OleDbDataReader, se debe llamar al método ExecuteReader del objeto OleDbCommand, en lugar de utilizar directamente un constructor.
Mientras se está utilizando OleDbDataReader, el objeto OleDbConnection asociado [...]]]></description>
			<content:encoded><![CDATA[<p><strong>OleDbDataReader</strong> proporciona el modo de lectura de una secuencia de filas de datos de tipo sólo avance de un origen de datos. Esta clase no se puede heredar. </p>
<p>Para crear OleDbDataReader, se debe llamar al método ExecuteReader del objeto OleDbCommand, en lugar de utilizar directamente un constructor.</p>
<p>Mientras se está utilizando OleDbDataReader, el objeto OleDbConnection asociado está ocupado dando servicio a OleDbDataReader, y en OleDbConnection no se puede realizar ninguna otra operación, excepto la de cerrar. Esto es así hasta que se llama al método Close de OleDbDataReader. Por ejemplo, <span id="more-744"></span>no se pueden recuperar parámetros de salida hasta después de llamar a Close.</p>
<p>Los cambios que realiza otro proceso o subproceso en un conjunto de resultados mientras se leen los datos, pueden ser visibles para el usuario de OleDbDataReader. Sin embargo, el comportamiento exacto depende de los intervalos de tiempo.</p>
<p>IsClosed y RecordsAffected son las únicas propiedades a las que se puede llamar después de cerrarse OleDbDataReader. Si bien se puede obtener acceso a la propiedad RecordsAffected mientras exista OleDbDataReader, se debe llamar siempre al método Close antes de devolver el valor de RecordsAffected para garantizar que el valor devuelto sea exacto.</p>
<div style="padding: 5px; float: right; " >
 <script type="text/javascript"><!--
google_ad_client = "pub-6087605660472467";
/* ayuda-foto-adsense-cuadro300x250, creado 4/12/08 5 k 2 */ 
google_ad_slot = "1220677556";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>
<p>En el siguiente ejemplo se crean OleDbConnection, OleDbCommand y OleDbDataReader. En el ejemplo se leen los datos y se escriben en la consola. Por último, en el ejemplo se cierra OleDbDataReader y, a continuación, OleDbConnection.</p>
<div style="clear:both;"></div>
<div class="igBar"><span id="lvbnet-3"><a href="#" onclick="javascript:showPlainTxt('vbnet-3'); return false;">Texto Plano</a></span></div>
<div class="syntax_hilite"><span class="langName">VB.NET:</span>
<div id="vbnet-3">
<div class="vbnet">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #FF8000;">Public</span> <span style="color: #0600FF;">Sub</span> ReadData<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #0600FF;">Dim</span> connectionString <span style="color: #FF8000;">As</span> <span style="color: #FF8000;">String</span> = <span style="color: #808080;">"Provider=Microsoft.Jet.OLEDB.4.0; Data Source=\\FotoPex\FpTimer\data\data.mdb"</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #0600FF;">Dim</span> queryString <span style="color: #FF8000;">As</span> <span style="color: #FF8000;">String</span> = <span style="color: #808080;">"SELECT usuario, Format(entrada, 'hh:mm:ss') as Entrada, Format(salida, 'hh:mm:ss') as Salida FROM(bitacora) WHERE (((fecha)=#03/04/2010#)) Order by id DESC ;"</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; Using connection <span style="color: #FF8000;">As</span> <span style="color: #FF8000;">New</span> OleDbConnection<span style="color: #000000;">&#40;</span>connectionString<span style="color: #000000;">&#41;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; <span style="color: #0600FF;">Dim</span> <span style="color: #0600FF;">command</span> <span style="color: #FF8000;">As</span> <span style="color: #FF8000;">New</span> OleDbCommand<span style="color: #000000;">&#40;</span>queryString, connection<span style="color: #000000;">&#41;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; connection.<span style="color: #0600FF;">Open</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; <span style="color: #0600FF;">Dim</span> reader <span style="color: #FF8000;">As</span> OleDbDataReader = <span style="color: #0600FF;">command</span>.<span style="color: #0000FF;">ExecuteReader</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; <span style="color: #0600FF;">While</span> reader.<span style="color: #0000FF;">Read</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; Console.<span style="color: #0000FF;">WriteLine</span><span style="color: #000000;">&#40;</span>reader<span style="color: #000000;">&#40;</span><span style="color: #FF0000;color:#800000;">0</span><span style="color: #000000;">&#41;</span>.<span style="color: #0000FF;">ToString</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; <span style="color: #0600FF;">End</span> <span style="color: #0600FF;">While</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; reader.<span style="color: #0600FF;">Close</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #0600FF;">End</span> Using</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; <span style="color: #0600FF;">End</span> <span style="color: #0600FF;">Sub</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Ahora vamos a ver una variante del ejemplo para <a href="http://ayuda.fotopex.com/programacion/net/escribir-datos-de-una-tabla-a-un-archivo-de-texto/">escribir datos de una tabla a un archivo de texto</a>, pero esta vez utilizaremos un OleDbDataReader para obtener los datos. No olvidemos declarar el NameSpace <strong>Imports System.IO</strong></p>
<div class="igBar"><span id="lvbnet-4"><a href="#" onclick="javascript:showPlainTxt('vbnet-4'); return false;">Texto Plano</a></span></div>
<div class="syntax_hilite"><span class="langName">VB.NET:</span>
<div id="vbnet-4">
<div class="vbnet">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #FF8000;">Private</span> <span style="color: #0600FF;">Sub</span> GrabaArchivo<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #0600FF;">Dim</span> cn <span style="color: #FF8000;">As</span> <span style="color: #FF8000;">New</span> OleDbConnection<span style="color: #000000;">&#40;</span><span style="color: #808080;">"Provider=Microsoft.Jet.OLEDB.4.0; Data Source=\\FotoPex\FpTimer\data\data.mdb"</span><span style="color: #000000;">&#41;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #0600FF;">Dim</span> sql <span style="color: #FF8000;">As</span> <span style="color: #FF8000;">String</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #0600FF;">Try</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; <span style="color: #008080; font-style: italic;">' preparamos el archivo</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; <span style="color: #0600FF;">Dim</span> Bitacora <span style="color: #FF8000;">As</span> StreamWriter</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; <span style="color: #0600FF;">Dim</span> NuevaLinea <span style="color: #FF8000;">As</span> <span style="color: #FF8000;">String</span> = <span style="color: #808080;">""</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; <span style="color: #0600FF;">Dim</span> newFileName <span style="color: #FF8000;">As</span> <span style="color: #FF8000;">String</span> = BitacoraPath &amp; <span style="color: #FF0000;">Date</span>.<span style="color: #0600FF;">Today</span>.<span style="color: #0000FF;">ToString</span><span style="color: #000000;">&#40;</span><span style="color: #808080;">"MMM dd yyyy"</span><span style="color: #000000;">&#41;</span> &amp; <span style="color: #808080;">".txt"</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; <span style="color: #008080; font-style: italic;">' verificamos si existe</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; <span style="color: #0600FF;">If</span> <a href="http://www.google.com/search?q=FILE+msdn.microsoft.com"><span style="color: #008000;">File</span></a>.<span style="color: #0000FF;">Exists</span><span style="color: #000000;">&#40;</span>newFileName<span style="color: #000000;">&#41;</span> = <span style="color: #0600FF;">False</span> <span style="color: #FF8000;">Then</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008080; font-style: italic;">' lo creamos</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; Bitacora = <a href="http://www.google.com/search?q=FILE+msdn.microsoft.com"><span style="color: #008000;">File</span></a>.<span style="color: #0000FF;">CreateText</span><span style="color: #000000;">&#40;</span>newFileName<span style="color: #000000;">&#41;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; <span style="color: #FF8000;">Else</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008080; font-style: italic;">' lo abrimos para agregar texto</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; Bitacora = <a href="http://www.google.com/search?q=FILE+msdn.microsoft.com"><span style="color: #008000;">File</span></a>.<span style="color: #0000FF;">AppendText</span><span style="color: #000000;">&#40;</span>newFileName<span style="color: #000000;">&#41;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; <span style="color: #0600FF;">End</span> <span style="color: #0600FF;">If</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; NuevaLinea = <span style="color: #808080;">"Time: "</span> &amp; <span style="color: #FF0000;">Date</span>.<span style="color: #0600FF;">Now</span>.<span style="color: #0000FF;">ToShortTimeString</span> &amp; vbCrLf &amp; _</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; <span style="color: #808080;">"Usuario"</span> &amp; vbTab &amp; <span style="color: #808080;">"&nbsp; Entrada&nbsp; "</span> &amp; vbTab &amp; <span style="color: #808080;">"&nbsp; Salida&nbsp; "</span> &amp; vbTab &amp; <span style="color: #808080;">"Total"</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; <span style="color: #008080; font-style: italic;">'agregamos datos al buffer en una linea nueva</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; Bitacora.<span style="color: #0000FF;">WriteLine</span><span style="color: #000000;">&#40;</span>NuevaLinea<span style="color: #000000;">&#41;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; <span style="color: #008080; font-style: italic;">' buscamos los resultados</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; cn.<span style="color: #0600FF;">Open</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; <span style="color: #008080; font-style: italic;">' por otro carácter</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; sql = <span style="color: #808080;">"SELECT usuario, Format(entrada, 'hh:mm:ss') as Entrada, Format(salida, 'hh:mm:ss') as Salida FROM(bitacora) WHERE (((fecha)=#03/04/2010#)) Order by id DESC ;"</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; <span style="color: #008080; font-style: italic;">'creamos un comando</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; <span style="color: #0600FF;">Dim</span> cmd <span style="color: #FF8000;">As</span> <span style="color: #FF8000;">New</span> OleDbCommand<span style="color: #000000;">&#40;</span>sql, cn<span style="color: #000000;">&#41;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; <span style="color: #0600FF;">Dim</span> dr <span style="color: #FF8000;">As</span> OleDbDataReader = cmd.<span style="color: #0000FF;">ExecuteReader</span><span style="color: #000000;">&#40;</span>CommandBehavior.<span style="color: #0000FF;">CloseConnection</span><span style="color: #000000;">&#41;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; <span style="color: #0600FF;">Do</span> <span style="color: #0600FF;">While</span> dr.<span style="color: #0000FF;">Read</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; NuevaLinea = dr.<span style="color: #0000FF;">Item</span><span style="color: #000000;">&#40;</span><span style="color: #808080;">"usuario"</span><span style="color: #000000;">&#41;</span>.<span style="color: #0000FF;">ToString</span> &amp; vbTab &amp; dr.<span style="color: #0000FF;">Item</span><span style="color: #000000;">&#40;</span><span style="color: #808080;">"Entrada"</span><span style="color: #000000;">&#41;</span>.<span style="color: #0000FF;">ToString</span> &amp; vbTab &amp; dr.<span style="color: #0000FF;">Item</span><span style="color: #000000;">&#40;</span><span style="color: #808080;">"Salida"</span><span style="color: #000000;">&#41;</span>.<span style="color: #0000FF;">ToString</span> &amp; vbTab &amp; <span style="color: #808080;">"Total"</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; Bitacora.<span style="color: #0000FF;">WriteLine</span><span style="color: #000000;">&#40;</span>NuevaLinea<span style="color: #000000;">&#41;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008080; font-style: italic;">' limpiamos el buffer y escribimos los datos contenidos al stream</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; Bitacora.<span style="color: #0000FF;">Flush</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; <span style="color: #0600FF;">Loop</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; NuevaLinea = vbCrLf &amp; <span style="color: #808080;">"********************* ***** "</span> &amp; vbCrLf</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; Bitacora.<span style="color: #0000FF;">WriteLine</span><span style="color: #000000;">&#40;</span>NuevaLinea<span style="color: #000000;">&#41;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; Bitacora.<span style="color: #0000FF;">Flush</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; Bitacora.<span style="color: #0600FF;">Close</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> <span style="color: #008080; font-style: italic;">' no olvides cerrar el archivo</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; dr.<span style="color: #0600FF;">Close</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #0600FF;">Catch</span> ex <span style="color: #FF8000;">As</span> Exception</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; <span style="color: #008080; font-style: italic;">'mostramos el error</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; <span style="color: #0600FF;">If</span> <a href="http://www.google.com/search?q=ERR+msdn.microsoft.com"><span style="color: #008000;">Err</span></a>.<span style="color: #0000FF;">Number</span> = <span style="color: #FF0000;color:#800000;">91</span> Or <a href="http://www.google.com/search?q=ERR+msdn.microsoft.com"><span style="color: #008000;">Err</span></a>.<span style="color: #0000FF;">Number</span> = <span style="color: #FF0000;color:#800000;">5</span> <span style="color: #FF8000;">Then</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008080; font-style: italic;">'MessageBox.Show(&quot;No se encontro registro&quot;)</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; <a href="http://www.google.com/search?q=ERR+msdn.microsoft.com"><span style="color: #008000;">Err</span></a>.<span style="color: #0000FF;">Clear</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; <span style="color: #FF8000;">Else</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; MessageBox.<span style="color: #0000FF;">Show</span><span style="color: #000000;">&#40;</span><span style="color: #808080;">"error "</span> &amp; <a href="http://www.google.com/search?q=ERR+msdn.microsoft.com"><span style="color: #008000;">Err</span></a>.<span style="color: #0000FF;">Number</span>.<span style="color: #0000FF;">ToString</span> &amp; vbCrLf &amp; ex.<span style="color: #0000FF;">Message</span><span style="color: #000000;">&#41;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; <span style="color: #0600FF;">End</span> <span style="color: #0600FF;">If</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; <span style="color: #008080; font-style: italic;">'Finally</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #0600FF;">End</span> <span style="color: #0600FF;">Try</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; <span style="color: #0600FF;">End</span> <span style="color: #0600FF;">Sub</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://ayuda.fotopex.com/programacion/net/escribir-datos-de-un-oledbdatareader-a-un-archivo-de-texto/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Clausula LIMIT en Access, SQL, MySQL y ORACLE</title>
		<link>http://ayuda.fotopex.com/programacion/bases-de-datos/clausula-limit-en-access-sql-mysql-y-oracle/</link>
		<comments>http://ayuda.fotopex.com/programacion/bases-de-datos/clausula-limit-en-access-sql-mysql-y-oracle/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 18:53:38 +0000</pubDate>
		<dc:creator>Mr. FotoPex</dc:creator>
				<category><![CDATA[Bases de Datos]]></category>
		<category><![CDATA[Access]]></category>
		<category><![CDATA[consulta]]></category>
		<category><![CDATA[LIMIT]]></category>
		<category><![CDATA[limitar]]></category>
		<category><![CDATA[MySQL y ORACLE]]></category>
		<category><![CDATA[registros]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://ayuda.fotopex.com/?p=741</guid>
		<description><![CDATA[
 




Para limitar el número de registros que debe devolver una consulta podemos utilizar:
Para Access y MS SQL utilizaremos TOP n de esa forma obtendremos los n primeros resultados de la búsqueda, y si nos interesa son los n últimos, utilizaremos  la cláusula ORDER BY

Texto Plano
SQL:




SELECT TOP n ... FROM ...


WHERE ...


ORDER BY... 






Para [...]]]></description>
			<content:encoded><![CDATA[<div style="padding: 5px; float: right; " >
 <script type="text/javascript"><!--
google_ad_client = "pub-6087605660472467";
/* ayuda-foto-adsense-cuadro300x250, creado 4/12/08 5 k 2 */ 
google_ad_slot = "1220677556";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>
<p>Para limitar el número de registros que debe devolver una consulta podemos utilizar:</p>
<p>Para <strong>Access</strong> y MS SQL utilizaremos <strong>TOP n</strong> de esa forma obtendremos los n primeros resultados de la búsqueda, y si nos interesa son los n últimos, utilizaremos  la cláusula <strong>ORDER BY</strong></p>
<div style="clear:both;"></div>
<div class="igBar"><span id="lsql-9"><a href="#" onclick="javascript:showPlainTxt('sql-9'); return false;">Texto Plano</a></span></div>
<div class="syntax_hilite"><span class="langName">SQL:</span>
<div id="sql-9">
<div class="sql">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #993333; font-weight: bold;">SELECT</span> TOP n ... <span style="color: #993333; font-weight: bold;">FROM</span> ...</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #993333; font-weight: bold;">WHERE</span> ...</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #993333; font-weight: bold;">ORDER</span> <span style="color: #993333; font-weight: bold;">BY</span>... </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Para <strong>MySQL</strong> utilizaremos <strong>LIMIT n </strong>, que ademas permite el compaginado agregando al final de un <strong>SELECT</strong>la clausula "<strong>LIMIT</strong>".<br />
<strong>MySQL</strong> - <strong>LIMIT n </strong></p>
<div class="igBar"><span id="lmysql-10"><a href="#" onclick="javascript:showPlainTxt('mysql-10'); return false;">Texto Plano</a></span></div>
<div class="syntax_hilite"><span class="langName">MySQL:</span>
<div id="mysql-10">
<div class="mysql">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><a href="http://search.mysql.com/search?site=refman-%35%31&amp;q=SELECT"><span style="color: #990099; font-weight: bold;">SELECT</span></a> ... <a href="http://search.mysql.com/search?site=refman-%35%31&amp;q=FROM"><span style="color: #990099; font-weight: bold;">FROM</span></a> ...</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><a href="http://search.mysql.com/search?site=refman-%35%31&amp;q=WHERE"><span style="color: #990099; font-weight: bold;">WHERE</span></a> ...</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><a href="http://search.mysql.com/search?site=refman-%35%31&amp;q=LIMIT"><span style="color: #990099; font-weight: bold;">LIMIT</span></a> n, n </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Para ver cinco registros a partir del registro 10:</p>
<div class="igBar"><span id="lsql-11"><a href="#" onclick="javascript:showPlainTxt('sql-11'); return false;">Texto Plano</a></span></div>
<div class="syntax_hilite"><span class="langName">SQL:</span>
<div id="sql-11">
<div class="sql">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #993333; font-weight: bold;">SELECT</span> * <span style="color: #993333; font-weight: bold;">FROM</span> tabla <span style="color: #993333; font-weight: bold;">LIMIT</span> <span style="color: #cc66cc;color:#800000;">10</span>,<span style="color: #cc66cc;color:#800000;">5</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p><strong>ORACLE</strong> genera una variable, tal y como si fuera un campo más de cada registro de la tabla, llamada “rownum”, la cual se incrementa por cada registro que vamos recuperando. De esta manera, sólo tenemos que acceder a esta variable y controlar que no sobrepasa el número que nos hemos propuesto como límite.</p>
<div class="igBar"><span id="loracle8-12"><a href="#" onclick="javascript:showPlainTxt('oracle8-12'); return false;">Texto Plano</a></span></div>
<div class="syntax_hilite"><span class="langName">ORACLE8:</span>
<div id="oracle8-12">
<div class="oracle8">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #993333; font-weight: bold; text-transform: uppercase;">SELECT</span> campos</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #993333; font-weight: bold; text-transform: uppercase;">FROM</span> <span style="color: #993333; font-weight: bold; text-transform: uppercase;">TABLE</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #993333; font-weight: bold; text-transform: uppercase;">WHERE</span> condicion</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #993333; font-weight: bold; text-transform: uppercase;">AND</span> <span style="color: #993333; font-weight: bold; text-transform: uppercase;">ROWNUM</span> &lt;= <span style="color: #cc66cc;color:#800000;">2</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://ayuda.fotopex.com/programacion/bases-de-datos/clausula-limit-en-access-sql-mysql-y-oracle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Activar Windows 7 actualizado</title>
		<link>http://ayuda.fotopex.com/so/activar-windows-7-actualizado/</link>
		<comments>http://ayuda.fotopex.com/so/activar-windows-7-actualizado/#comments</comments>
		<pubDate>Wed, 03 Mar 2010 16:54:29 +0000</pubDate>
		<dc:creator>Mr. FotoPex</dc:creator>
				<category><![CDATA[SO]]></category>

		<guid isPermaLink="false">http://ayuda.fotopex.com/?p=740</guid>
		<description><![CDATA[La actualización de Windows 7 kb971033 que elimina la mayoría de los métodos de activación del sistema operativo, ya tiene una solución, y mucho que tienen Windows 7 pirata lo han probado.
Enlace Protégete del WAT (Windows Activation Technologies).

 




]]></description>
			<content:encoded><![CDATA[<p>La actualización de <strong>Windows 7</strong> <strong>kb971033</strong> que elimina la mayoría de los métodos de activación del sistema operativo, ya tiene una solución, y mucho que tienen <strong>Windows 7 pirata</strong> lo han probado.</p>
<p>Enlace <a href="http://www.windows7hack.com/foros/3-noticias/16423-protegete-del-wat-windows-activation-technologies" target="_blank">Protégete del WAT (Windows Activation Technologies)</a>.</p>
<p>
 <script type="text/javascript"><!--
google_ad_client = "pub-6087605660472467";
/* ayuda-foto-adsense-cuadro300x250, creado 4/12/08 5 k 2 */ 
google_ad_slot = "1220677556";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</p>
]]></content:encoded>
			<wfw:commentRss>http://ayuda.fotopex.com/so/activar-windows-7-actualizado/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Crea un Emoticon Animado Fácilmente</title>
		<link>http://ayuda.fotopex.com/software/crea-un-emoticon-animado-facilmente/</link>
		<comments>http://ayuda.fotopex.com/software/crea-un-emoticon-animado-facilmente/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 15:22:47 +0000</pubDate>
		<dc:creator>Mr. FotoPex</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Animado]]></category>
		<category><![CDATA[Crea]]></category>
		<category><![CDATA[Emoticon]]></category>
		<category><![CDATA[Fácilmente]]></category>

		<guid isPermaLink="false">http://ayuda.fotopex.com/?p=736</guid>
		<description><![CDATA[
Un emoticono es una secuencia de caracteres ASCII que, en un principio, representaba una cara humana y expresaba una emoción. Pero, posteriormente, fueron creándose otros emoticonos con significados muy diversos. Los emoticonos que expresan alegría u otras emociones positivas se clasifican normalmente como smileys (de smile, «sonrisa» en inglés). Los emoticonos se emplean frecuentemente en [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://ayuda.fotopex.com/wp-content/uploads/2010/03/fotopex-emoticon.jpg" alt="" title="fotopex-emoticon" width="217" height="189" class="alignleft size-full wp-image-737" /><br />
Un emoticono es una secuencia de caracteres ASCII que, en un principio, representaba una cara humana y expresaba una emoción. Pero, posteriormente, fueron creándose otros emoticonos con significados muy diversos. Los emoticonos que expresan alegría u otras emociones positivas se clasifican normalmente como smileys (de smile, «sonrisa» en inglés). Los emoticonos se emplean frecuentemente en mensajes de correo electrónico, en foros, SMS y en los chats mediante servicios de mensajería instantánea. Si se gira a la derecha el emoticono <img src='http://ayuda.fotopex.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  se obtiene una cara. Una cara sonriente derivada del emoticono <img src='http://ayuda.fotopex.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  (smiley).</p>
<p><span id="more-736"></span></p>
<div style="padding: 5px; float: right; " >
 <script type="text/javascript"><!--
google_ad_client = "pub-6087605660472467";
/* ayuda-foto-adsense-cuadro300x250, creado 4/12/08 5 k 2 */ 
google_ad_slot = "1220677556";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>
<p>Los emoticonos se han ido desarrollando a lo largo de los años, principalmente, para imitar las expresiones faciales y las emociones, para vencer las limitaciones de tener que comunicarse sólo en forma de texto y porque sirven como abreviaturas. Se han escrito libros sobre este tema, con listas interminables de emoticonos.</p>
<p>En los foros de Internet, los emoticonos se suelen reemplazar automáticamente por las imágenes correspondientes. En algunos editores de texto (como por ejemplo Microsoft Word), la opción de «corrección automática» reconoce emoticonos básicos como <img src='http://ayuda.fotopex.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  y <img src='http://ayuda.fotopex.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> , cambiándolos por el carácter correspondiente.</p>
<p>Para esos amigos que les gusta ver su conversación en el mensajero repleto de emoticonos en el blog de Softonic te muestran <a href="http://es.onsoftware.com/p/crea-emoticonos-animados-con-photoshop-en-10-pasos" target="_blank">cómo crear un emoticon animado en 10 pasos</a></p>
]]></content:encoded>
			<wfw:commentRss>http://ayuda.fotopex.com/software/crea-un-emoticon-animado-facilmente/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Elimina referencias a la version de WordPress</title>
		<link>http://ayuda.fotopex.com/software/elimina-referencias-a-la-version-de-wordpress/</link>
		<comments>http://ayuda.fotopex.com/software/elimina-referencias-a-la-version-de-wordpress/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 14:43:06 +0000</pubDate>
		<dc:creator>Mr. FotoPex</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Elimina]]></category>
		<category><![CDATA[referencias]]></category>
		<category><![CDATA[version]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://ayuda.fotopex.com/?p=735</guid>
		<description><![CDATA[Una solución muy limpia, segura y efectiva es añadir el siguiente código al fichero functions.php de tu tema activo:
Texto Plano
PHP:




function quitar_version_wp&#40;&#41; &#123;


&#160; &#160; &#160; return '';


&#160; &#160; &#160; &#125;


&#160; &#160; &#160; add_filter&#40;'the_generator', 'quitar_version_wp'&#41;; 






De este modo el número de versión de WordPress no se mostrará en ninguna parte de blog.

 




]]></description>
			<content:encoded><![CDATA[<p>Una solución muy limpia, segura y efectiva es añadir el siguiente código al fichero <strong>functions.php</strong> de tu tema activo:</p>
<div class="igBar"><span id="lphp-14"><a href="#" onclick="javascript:showPlainTxt('php-14'); return false;">Texto Plano</a></span></div>
<div class="syntax_hilite"><span class="langName">PHP:</span>
<div id="php-14">
<div class="php">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #000000; font-weight: bold;">function</span> quitar_version_wp<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">return</span> <span style="color: #0000ff;">''</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#125;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; add_filter<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'the_generator'</span>, <span style="color: #0000ff;">'quitar_version_wp'</span><span style="color: #009900;">&#41;</span>; </div>
</li>
</ol>
</div>
</div>
</div>
<p>
De este modo el número de versión de <strong>WordPress </strong>no se mostrará en ninguna parte de blog.<br />

 <script type="text/javascript"><!--
google_ad_client = "pub-6087605660472467";
/* ayuda-foto-adsense-cuadro300x250, creado 4/12/08 5 k 2 */ 
google_ad_slot = "1220677556";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</p>
]]></content:encoded>
			<wfw:commentRss>http://ayuda.fotopex.com/software/elimina-referencias-a-la-version-de-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SHA-1 Con VB.NET 2008</title>
		<link>http://ayuda.fotopex.com/programacion/net/sha-1-con-vb-net-2008/</link>
		<comments>http://ayuda.fotopex.com/programacion/net/sha-1-con-vb-net-2008/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 01:50:18 +0000</pubDate>
		<dc:creator>Mr. FotoPex</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[VB]]></category>
		<category><![CDATA[Visual Basic]]></category>

		<guid isPermaLink="false">http://ayuda.fotopex.com/?p=731</guid>
		<description><![CDATA[

 




Necesitamos :
1 caja de texto TextBox1
1 botón Button1
1 etiqueta para el mensaje lblMsg
Ya sabes que puedes bajarte los archivos sha1 con vb.net


Texto Plano
VB.NET:




Imports System.Security.Cryptography


Imports System.Text


&#160;


Public Class Form1 


&#160; Private Function generarClaveSHA1&#40;ByVal nombre As String&#41; As String


&#160; &#160; Dim enc As New UTF8Encoding


&#160; &#160; Dim data&#40;&#41; As Byte = enc.GetBytes&#40;nombre&#41;


&#160; &#160; Dim result&#40;&#41; As Byte


&#160;


&#160; [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://ayuda.fotopex.com/wp-content/uploads/2010/03/sha1-small.jpg" alt="" title="sha1-small" width="550" height="189" class="aligncenter size-full wp-image-732" /></p>
<div style="padding: 5px; float: right; " >
 <script type="text/javascript"><!--
google_ad_client = "pub-6087605660472467";
/* ayuda-foto-adsense-cuadro300x250, creado 4/12/08 5 k 2 */ 
google_ad_slot = "1220677556";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>
<p>Necesitamos :</p>
<p>1 caja de texto <strong>TextBox1</strong><br />
1 botón <strong>Button1</strong><br />
1 etiqueta para el mensaje <strong>lblMsg</strong></p>
<p>Ya sabes que puedes bajarte los archivos <a href='http://ayuda.fotopex.com/wp-content/uploads/2010/03/sha1.zip'>sha1 con vb.net</a></p>
<div style="clear:both;"></div>
<p><span id="more-731"></span></p>
<div class="igBar"><span id="lvbnet-16"><a href="#" onclick="javascript:showPlainTxt('vbnet-16'); return false;">Texto Plano</a></span></div>
<div class="syntax_hilite"><span class="langName">VB.NET:</span>
<div id="vbnet-16">
<div class="vbnet">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #0600FF;">Imports</span> System.<span style="color: #0000FF;">Security</span>.<span style="color: #0000FF;">Cryptography</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #0600FF;">Imports</span> System.<span style="color: #0000FF;">Text</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #FF8000;">Public</span> <span style="color: #0600FF;">Class</span> Form1 </div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; <span style="color: #FF8000;">Private</span> <span style="color: #0600FF;">Function</span> generarClaveSHA1<span style="color: #000000;">&#40;</span><span style="color: #FF8000;">ByVal</span> nombre <span style="color: #FF8000;">As</span> <span style="color: #FF8000;">String</span><span style="color: #000000;">&#41;</span> <span style="color: #FF8000;">As</span> <span style="color: #FF8000;">String</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #0600FF;">Dim</span> enc <span style="color: #FF8000;">As</span> <span style="color: #FF8000;">New</span> UTF8Encoding</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #0600FF;">Dim</span> data<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> <span style="color: #FF8000;">As</span> <span style="color: #FF0000;">Byte</span> = enc.<span style="color: #0000FF;">GetBytes</span><span style="color: #000000;">&#40;</span>nombre<span style="color: #000000;">&#41;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #0600FF;">Dim</span> result<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> <span style="color: #FF8000;">As</span> <span style="color: #FF0000;">Byte</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #0600FF;">Dim</span> sha <span style="color: #FF8000;">As</span> <span style="color: #FF8000;">New</span> SHA1CryptoServiceProvider<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; result = sha.<span style="color: #0000FF;">ComputeHash</span><span style="color: #000000;">&#40;</span>data<span style="color: #000000;">&#41;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #0600FF;">Dim</span> sb <span style="color: #FF8000;">As</span> <span style="color: #FF8000;">New</span> StringBuilder</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #FF8000;">For</span> i <span style="color: #FF8000;">As</span> <span style="color: #FF0000;">Integer</span> = <span style="color: #FF0000;color:#800000;">0</span> <span style="color: #FF8000;">To</span> result.<span style="color: #0000FF;">Length</span> - <span style="color: #FF0000;color:#800000;">1</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; <span style="color: #0600FF;">If</span> result<span style="color: #000000;">&#40;</span>i<span style="color: #000000;">&#41;</span> &lt;<span style="color: #FF0000;color:#800000;">16</span> <span style="color: #FF8000;">Then</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; sb.<span style="color: #0000FF;">Append</span><span style="color: #000000;">&#40;</span><span style="color: #808080;">"0"</span><span style="color: #000000;">&#41;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; <span style="color: #0600FF;">End</span> <span style="color: #0600FF;">If</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; sb.<span style="color: #0000FF;">Append</span><span style="color: #000000;">&#40;</span>result<span style="color: #000000;">&#40;</span>i<span style="color: #000000;">&#41;</span>.<span style="color: #0000FF;">ToString</span><span style="color: #000000;">&#40;</span><span style="color: #808080;">"x"</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #FF8000;">Next</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; Return sb.<span style="color: #0000FF;">ToString</span>.<span style="color: #0000FF;">ToUpper</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; <span style="color: #0600FF;">End</span> <span style="color: #0600FF;">Function</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; <span style="color: #FF8000;">Private</span> <span style="color: #0600FF;">Sub</span> Button1_Click<span style="color: #000000;">&#40;</span><span style="color: #FF8000;">ByVal</span> sender <span style="color: #FF8000;">As</span> System.<span style="color: #FF0000;">Object</span>, <span style="color: #FF8000;">ByVal</span> e <span style="color: #FF8000;">As</span> System.<span style="color: #0000FF;">EventArgs</span><span style="color: #000000;">&#41;</span> <span style="color: #FF8000;">Handles</span> Button1.<span style="color: #0000FF;">Click</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #FF8000;">Me</span>.<span style="color: #0000FF;">lblMsg</span>.<span style="color: #0000FF;">Text</span> = generarClaveSHA1<span style="color: #000000;">&#40;</span><span style="color: #FF8000;">Me</span>.<span style="color: #0000FF;">TextBox1</span>.<span style="color: #0000FF;">Text</span><span style="color: #000000;">&#41;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; <span style="color: #0600FF;">End</span> <span style="color: #0600FF;">Sub</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #0600FF;">End</span> <span style="color: #0600FF;">Class</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://ayuda.fotopex.com/programacion/net/sha-1-con-vb-net-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cómo Des-instalar GrooveMonitor</title>
		<link>http://ayuda.fotopex.com/software/como-des-instalar-groovemonitor/</link>
		<comments>http://ayuda.fotopex.com/software/como-des-instalar-groovemonitor/#comments</comments>
		<pubDate>Fri, 26 Feb 2010 00:40:11 +0000</pubDate>
		<dc:creator>Mr. FotoPex</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Desinstalar]]></category>
		<category><![CDATA[groovemonitor]]></category>
		<category><![CDATA[Remover]]></category>

		<guid isPermaLink="false">http://ayuda.fotopex.com/?p=727</guid>
		<description><![CDATA[Existe  malware que podria camuflajearse como GrooveMonitor.exe, particularmente si esta localizado  en  las carpetas c:\windows ó c:\windows\system32, si ya intentaste desinstalarlo desde el panel de control y sigue apareciendo, puedes removerlo así de fácil:

 




1.- Presiona las teclas Windows + R y en la ventana de ejecutar ingresa msconfig y presionas Enter.
2.- [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://ayuda.fotopex.com/wp-content/uploads/2010/02/alt-r.jpg" alt="" title="alt-r" width="347" height="179" class="alignleft size-full wp-image-728" />Existe  malware que podria camuflajearse como GrooveMonitor.exe, particularmente si esta localizado  en  las carpetas <strong>c:\windows</strong> ó <strong>c:\windows\system32</strong>, si ya intentaste desinstalarlo desde el panel de control y sigue apareciendo, puedes removerlo así de fácil:<span id="more-727"></span></p>
<div style="padding: 5px; float: right; " >
 <script type="text/javascript"><!--
google_ad_client = "pub-6087605660472467";
/* ayuda-foto-adsense-cuadro300x250, creado 4/12/08 5 k 2 */ 
google_ad_slot = "1220677556";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>
<p>1.- Presiona las teclas <strong>Windows + R</strong> y en la ventana de ejecutar ingresa <strong>msconfig</strong> y presionas <strong>Enter</strong>.<br />
2.- En la pestaña de INICIO quita la selección de "groovemonitor".<br />
Listo!<br />
Ahora reinicia y continua.</p>
<p>De esta forma estamos previniendo que inicie <strong>groovemonitor</strong>.</p>
<div style="clear:both;"></div>
]]></content:encoded>
			<wfw:commentRss>http://ayuda.fotopex.com/software/como-des-instalar-groovemonitor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quitando el mensaje &#8220;Podría ser víctima de una falsificación de software&#8221;</title>
		<link>http://ayuda.fotopex.com/so/quitando-el-mensaje-podria-ser-victima-de-una-falsificacion-de-software/</link>
		<comments>http://ayuda.fotopex.com/so/quitando-el-mensaje-podria-ser-victima-de-una-falsificacion-de-software/#comments</comments>
		<pubDate>Fri, 26 Feb 2010 00:18:33 +0000</pubDate>
		<dc:creator>Mr. FotoPex</dc:creator>
				<category><![CDATA[SO]]></category>
		<category><![CDATA[Desinstalar]]></category>
		<category><![CDATA[Falsificación]]></category>
		<category><![CDATA[Remover]]></category>
		<category><![CDATA[WGA]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://ayuda.fotopex.com/?p=725</guid>
		<description><![CDATA[
Yo te recomendaría que te cambiaras a linux que actualmente es muy fácil de utilizar y existe una infinidad de software que seguramente satisfagan tus necesidades ahorrándote mucho dinero.
Pero si insistes en utilizar Windows, lo mas recomendable es que compres la licencia y tengas acceso a las "actualizaciones de seguridad" que te brinda la compañía, [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://ayuda.fotopex.com/wp-content/uploads/2010/02/copiailegalwindows.jpg" alt="" title="copia ilegal windows" width="478" height="85" class="aligncenter size-full wp-image-726" /><br />
Yo te recomendaría que te cambiaras a <a href="http://www.ubuntu.com/" target="_blank">linux </a>que actualmente es muy fácil de utilizar y existe una infinidad de software que seguramente satisfagan tus necesidades ahorrándote mucho dinero.<br />
Pero si insistes en utilizar Windows, lo mas recomendable es que compres la licencia y tengas acceso a las "actualizaciones de seguridad" que te brinda la compañía, de acuerdo lo que necesitas es remover el <strong>Windows Genuine Advantage</strong> (<strong>WGA</strong>) mientras tomas una decisión definitiva.</p>
<p>Recuerda que debes hacer un respaldo del registro antes de comenzar a hacer este experimento.</p>
<div style="padding: 5px; float: left; " >
 <script type="text/javascript"><!--
google_ad_client = "pub-6087605660472467";
/* ayuda-foto-adsense-cuadro300x250, creado 4/12/08 5 k 2 */ 
google_ad_slot = "1220677556";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>
<p>1.- Reinicia Windows en <strong>modo seguro</strong> (presionando la tecla F8)<br />
2.- Abre el editor de registros (<strong>regedit.exe)</strong> y busca y borra el folder <strong>wgalogon</strong> y <strong>wgasetup</strong>.<br />
3.- En tu directorio de Windows busca y borra los archivos wga*, normalmente están en <strong>system 32</strong>.</p>
<p>Listo!</p>
<div style="clear:both;"></div>
<p>Reinicia normalmente tu windows y continua con tu "trabajo".</p>
]]></content:encoded>
			<wfw:commentRss>http://ayuda.fotopex.com/so/quitando-el-mensaje-podria-ser-victima-de-una-falsificacion-de-software/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>sumando</title>
		<link>http://ayuda.fotopex.com/piensa/sumando/</link>
		<comments>http://ayuda.fotopex.com/piensa/sumando/#comments</comments>
		<pubDate>Mon, 15 Feb 2010 23:41:27 +0000</pubDate>
		<dc:creator>Mr. FotoPex</dc:creator>
				<category><![CDATA[Piensa]]></category>
		<category><![CDATA[problemas]]></category>
		<category><![CDATA[Suma]]></category>

		<guid isPermaLink="false">http://ayuda.fotopex.com/?p=723</guid>
		<description><![CDATA[
 




Si:
2 + 3 = 10
7 + 2 = 63
6 + 5 = 66
8 + 4 = 96
Entonces:
9 + 7 =¿?

Yo no sé si es un problema para personas con un IQ superior a 120 pero es muy bueno.
]]></description>
			<content:encoded><![CDATA[<div style="padding: 5px; float: right; " >
 <script type="text/javascript"><!--
google_ad_client = "pub-6087605660472467";
/* ayuda-foto-adsense-cuadro300x250, creado 4/12/08 5 k 2 */ 
google_ad_slot = "1220677556";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>
<p>Si:</p>
<p>2 + 3 = 10<br />
7 + 2 = 63<br />
6 + 5 = 66<br />
8 + 4 = 96</p>
<p>Entonces:</p>
<p>9 + 7 =¿?</p>
<div style="clear:both;"></div>
<p>Yo no sé si es un <a href="http://helektron.com/problemas-para-personas-con-un-iq-superior-a-120/#comment-237490" target="_blank">problema para personas con un IQ superior a 120</a> pero es muy bueno.</p>
]]></content:encoded>
			<wfw:commentRss>http://ayuda.fotopex.com/piensa/sumando/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Color del texto seleccionado con CSS</title>
		<link>http://ayuda.fotopex.com/programacion/internet/color-del-texto-seleccionado-con-css/</link>
		<comments>http://ayuda.fotopex.com/programacion/internet/color-del-texto-seleccionado-con-css/#comments</comments>
		<pubDate>Mon, 08 Feb 2010 15:27:58 +0000</pubDate>
		<dc:creator>Mr. FotoPex</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://ayuda.fotopex.com/?p=720</guid>
		<description><![CDATA[<br />
<b>Warning</b>:  preg_replace() [<a href='function.preg-replace'>function.preg-replace</a>]: Unknown modifier '\' in <b>/home1/fotopexc/public_html/ayuda/wp-content/plugins/ig_syntax_hilite/geshi.php</b> on line <b>2007</b><br />
<br />
<b>Warning</b>:  preg_replace() [<a href='function.preg-replace'>function.preg-replace</a>]: Unknown modifier 'a' in <b>/home1/fotopexc/public_html/ayuda/wp-content/plugins/ig_syntax_hilite/geshi.php</b> on line <b>2007</b><br />
<br />
<b>Warning</b>:  preg_replace() [<a href='function.preg-replace'>function.preg-replace</a>]: Unknown modifier '\' in <b>/home1/fotopexc/public_html/ayuda/wp-content/plugins/ig_syntax_hilite/geshi.php</b> on line <b>2007</b><br />
<br />
<b>Warning</b>:  preg_replace() [<a href='function.preg-replace'>function.preg-replace</a>]: Unknown modifier 'a' in <b>/home1/fotopexc/public_html/ayuda/wp-content/plugins/ig_syntax_hilite/geshi.php</b> on line <b>2007</b><br />

Algo tan simple como:
Texto Plano
CSS:




&#160;






Pero si usas Internet Explorer no funciona.


 





]]></description>
			<content:encoded><![CDATA[<br />
<b>Warning</b>:  preg_replace() [<a href='function.preg-replace'>function.preg-replace</a>]: Unknown modifier '\' in <b>/home1/fotopexc/public_html/ayuda/wp-content/plugins/ig_syntax_hilite/geshi.php</b> on line <b>2007</b><br />
<br />
<b>Warning</b>:  preg_replace() [<a href='function.preg-replace'>function.preg-replace</a>]: Unknown modifier 'a' in <b>/home1/fotopexc/public_html/ayuda/wp-content/plugins/ig_syntax_hilite/geshi.php</b> on line <b>2007</b><br />
<br />
<b>Warning</b>:  preg_replace() [<a href='function.preg-replace'>function.preg-replace</a>]: Unknown modifier '\' in <b>/home1/fotopexc/public_html/ayuda/wp-content/plugins/ig_syntax_hilite/geshi.php</b> on line <b>2007</b><br />
<br />
<b>Warning</b>:  preg_replace() [<a href='function.preg-replace'>function.preg-replace</a>]: Unknown modifier 'a' in <b>/home1/fotopexc/public_html/ayuda/wp-content/plugins/ig_syntax_hilite/geshi.php</b> on line <b>2007</b><br />
<p><img src="http://ayuda.fotopex.com/wp-content/uploads/2010/02/texto-css-fotopex-490x304.jpg" alt="" title="texto-css-fotopex" width="490" height="304" class="aligncenter size-medium wp-image-721" /><br />
Algo tan simple como:</p>
<div class="igBar"><span id="lcss-18"><a href="#" onclick="javascript:showPlainTxt('css-18'); return false;">Texto Plano</a></span></div>
<div class="syntax_hilite"><span class="langName">CSS:</span>
<div id="css-18">
<div class="css">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
</ol>
</div>
</div>
</div>
<p>
Pero si usas Internet Explorer no funciona.<br />
<span id="more-720"></span>
<div style="padding: 5px; float: right; " >
 <script type="text/javascript"><!--
google_ad_client = "pub-6087605660472467";
/* ayuda-foto-adsense-cuadro300x250, creado 4/12/08 5 k 2 */ 
google_ad_slot = "1220677556";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>
<div style="clear:both;"></div>
]]></content:encoded>
			<wfw:commentRss>http://ayuda.fotopex.com/programacion/internet/color-del-texto-seleccionado-con-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
