<?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>DaW - Labs &#187; Visual Basic</title>
	<atom:link href="http://www.daw-labs.com/category/programacion/visual-basic/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.daw-labs.com</link>
	<description>¡La Informática al límite!</description>
	<lastBuildDate>Sat, 19 May 2012 17:56:07 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>I Love You &#8211; Virus informático&#8230;</title>
		<link>http://www.daw-labs.com/i-love-youvirus/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=i-love-youvirus</link>
		<comments>http://www.daw-labs.com/i-love-youvirus/#comments</comments>
		<pubDate>Thu, 17 Jun 2010 13:02:38 +0000</pubDate>
		<dc:creator>nullr00t</dc:creator>
				<category><![CDATA[Programación]]></category>
		<category><![CDATA[Visual Basic]]></category>
		<category><![CDATA[I♥YOU]]></category>
		<category><![CDATA[VB6]]></category>
		<category><![CDATA[VBS]]></category>
		<category><![CDATA[virus]]></category>

		<guid isPermaLink="false">http://daw-labs.com/?p=561</guid>
		<description><![CDATA[Hola! . Pues hoy os traigo el famoso virus I♥YOU! Bueno, que mas decir, aquí teneis el código. Código: http://tinypaste.com/f0ecd Más información sobre cómo se expande y una ficha técnica más completa, está en Visual Basic Script (VBS). http://www.hacksoft.com.pe/virus/vbs.loveletter.htm Saludos]]></description>
			<content:encoded><![CDATA[<p>Hola! <img src='http://www.daw-labs.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> .</p>
<p>Pues hoy os traigo el famoso virus <strong>I♥YOU!</strong></p>
<p>Bueno, que mas decir, aquí teneis el código.</p>
<p><strong><span style="color: #ff0000;">Código: </span> </strong><a title="ILOVEU" href="http://tinypaste.com/f0ecd" target="_blank">http://tinypaste.com/f0ecd</a></p>
<p>Más información sobre cómo se expande y una ficha técnica más completa, está en <strong>Visual Basic Script (VBS).</strong></p>
<p><a title="Informacion  sobre ILOVEU" href="http://www.hacksoft.com.pe/virus/vbs.loveletter.htm" target="_blank">http://www.hacksoft.com.pe/virus/vbs.loveletter.htm</a></p>
<p><strong><em>Saludos</em></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.daw-labs.com/i-love-youvirus/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Llamar a punteros desde VB6</title>
		<link>http://www.daw-labs.com/llamar-a-punteros-desde-vb6/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=llamar-a-punteros-desde-vb6</link>
		<comments>http://www.daw-labs.com/llamar-a-punteros-desde-vb6/#comments</comments>
		<pubDate>Sat, 08 May 2010 15:59:58 +0000</pubDate>
		<dc:creator>WindHack</dc:creator>
				<category><![CDATA[Programación]]></category>
		<category><![CDATA[Visual Basic]]></category>

		<guid isPermaLink="false">http://daw-labs.com/2010/05/llamar-a-punteros-desde-vb6/</guid>
		<description><![CDATA[Ésta es una forma de llamar punteros en VB6 sin usar ninguna API externa a VB, programada por Karcrack. Option Explicit &#160; Private Type SUBROUTINE    lNull           As Long '// Must be 0    lPtr            As Long End Type &#160; Private Declare Function GoSubReturn Lib&#8230;]]></description>
			<content:encoded><![CDATA[<p>Ésta es una forma de llamar punteros en VB6 sin usar ninguna API externa a VB, programada por <strong>Karcrack</strong>.</p>

<div class="wp_syntax"><div class="code"><pre class="vb" style="font-family:monospace;"><span style="color: #E56717; font-weight: bold;">Option</span> <span style="color: #E56717; font-weight: bold;">Explicit</span>
&nbsp;
<span style="color: #E56717; font-weight: bold;">Private</span> <span style="color: #151B8D; font-weight: bold;">Type</span> SUBROUTINE
    lNull           <span style="color: #151B8D; font-weight: bold;">As</span> <span style="color: #F660AB; font-weight: bold;">Long</span> <span style="color: #008000;">'// Must be 0
</span>    lPtr            <span style="color: #151B8D; font-weight: bold;">As</span> <span style="color: #F660AB; font-weight: bold;">Long</span>
<span style="color: #8D38C9; font-weight: bold;">End</span> <span style="color: #151B8D; font-weight: bold;">Type</span>
&nbsp;
<span style="color: #E56717; font-weight: bold;">Private</span> <span style="color: #151B8D; font-weight: bold;">Declare</span> <span style="color: #E56717; font-weight: bold;">Function</span> GoSubReturn Lib <span style="color: #800000;">&quot;MSVBVM60&quot;</span> Alias <span style="color: #800000;">&quot;__vbaGosubReturn&quot;</span> (<span style="color: #151B8D; font-weight: bold;">ByRef</span> lpSubRoutine <span style="color: #151B8D; font-weight: bold;">As</span> <span style="color: #F660AB; font-weight: bold;">Long</span>) <span style="color: #151B8D; font-weight: bold;">As</span> <span style="color: #F660AB; font-weight: bold;">Long</span>
&nbsp;
<span style="color: #008000;">'---------------------------------------------------------------------------------------
</span><span style="color: #008000;">' Procedure : GoToPtr
</span><span style="color: #008000;">' Author    : Karcrack
</span><span style="color: #008000;">' Date      : 08/05/2010
</span><span style="color: #008000;">' Purpose   : GoTo a pointer
</span><span style="color: #008000;">' Warning   : It's not a JMP, is a GoTo, so the execution of the program won't continue
</span><span style="color: #008000;">'           where you made the GoTo...
</span><span style="color: #008000;">'---------------------------------------------------------------------------------------
</span><span style="color: #008000;">'
</span><span style="color: #E56717; font-weight: bold;">Public</span> <span style="color: #E56717; font-weight: bold;">Sub</span> GoToPtr(<span style="color: #151B8D; font-weight: bold;">ByVal</span> lPtr <span style="color: #151B8D; font-weight: bold;">As</span> <span style="color: #F660AB; font-weight: bold;">Long</span>)
    <span style="color: #151B8D; font-weight: bold;">Dim</span> tSubRoutine <span style="color: #151B8D; font-weight: bold;">As</span> SUBROUTINE
&nbsp;
    tSubRoutine.lPtr = lPtr
    <span style="color: #E56717; font-weight: bold;">Call</span> GoSubReturn(VarPtr(tSubRoutine))
<span style="color: #8D38C9; font-weight: bold;">End</span> <span style="color: #E56717; font-weight: bold;">Sub</span></pre></div></div>

<p>Hay que tener cuidado con el puntero al cual llamamos, pues debido a que el <em>Stack se deforma</em> para hacer el salto no se puede volver al lugar desde el cual se llamo a la funcion.</p>
<p><strong>Ejemplo de uso:</strong></p>

<div class="wp_syntax"><div class="code"><pre class="vb" style="font-family:monospace;"><span style="color: #E56717; font-weight: bold;">Sub</span> Main()
    <span style="color: #E56717; font-weight: bold;">Call</span> GoToPtr(gP(AddressOf RMain))
<span style="color: #8D38C9; font-weight: bold;">End</span> <span style="color: #E56717; font-weight: bold;">Sub</span>
&nbsp;
<span style="color: #E56717; font-weight: bold;">Function</span> gP(<span style="color: #151B8D; font-weight: bold;">ByVal</span> lPtr <span style="color: #151B8D; font-weight: bold;">As</span> <span style="color: #F660AB; font-weight: bold;">Long</span>) <span style="color: #151B8D; font-weight: bold;">As</span> <span style="color: #F660AB; font-weight: bold;">Long</span>
    gP = lPtr
<span style="color: #8D38C9; font-weight: bold;">End</span> <span style="color: #E56717; font-weight: bold;">Function</span>
&nbsp;
<span style="color: #E56717; font-weight: bold;">Sub</span> RMain()
    MsgBox <span style="color: #800000;">&quot;HOLA&quot;</span>
    <span style="color: #8D38C9; font-weight: bold;">End</span>
<span style="color: #8D38C9; font-weight: bold;">End</span> <span style="color: #E56717; font-weight: bold;">Sub</span></pre></div></div>

<p>Gracias a <strong>Karcrack</strong> por el código.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.daw-labs.com/llamar-a-punteros-desde-vb6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Copiar archivos de un directorio a otro</title>
		<link>http://www.daw-labs.com/copiar-archivos-de-un-directorio-a-otro/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=copiar-archivos-de-un-directorio-a-otro</link>
		<comments>http://www.daw-labs.com/copiar-archivos-de-un-directorio-a-otro/#comments</comments>
		<pubDate>Mon, 19 Apr 2010 01:12:16 +0000</pubDate>
		<dc:creator>WindHack</dc:creator>
				<category><![CDATA[Programación]]></category>
		<category><![CDATA[Visual Basic]]></category>
		<category><![CDATA[archivos]]></category>
		<category><![CDATA[basic]]></category>
		<category><![CDATA[copiar]]></category>
		<category><![CDATA[directorio]]></category>
		<category><![CDATA[funcion]]></category>
		<category><![CDATA[visual]]></category>

		<guid isPermaLink="false">http://daw-labs.co.cc/?p=241</guid>
		<description><![CDATA[En Visual Basic podemos copiar un archivo de un directorio a otro empleando una función nativa llamada &#8220;FileCopy&#8220;, su sintaxis es: Public Sub FileCopy( _ ByVal Source As String, _ ByVal Destination As String _ ) Los parámetros necesarios en esta función son muy fáciles de interpretar, estos son: Source: Indica la ruta del archivo&#8230;]]></description>
			<content:encoded><![CDATA[<p>En <strong>Visual Basic</strong> podemos copiar un archivo de un directorio a otro empleando una función nativa llamada &#8220;<em>FileCopy</em>&#8220;, su sintaxis es:</p>

<div class="wp_syntax"><div class="code"><pre class="vb" style="font-family:monospace;"><span style="color: #E56717; font-weight: bold;">Public</span> <span style="color: #E56717; font-weight: bold;">Sub</span> FileCopy( _
   <span style="color: #151B8D; font-weight: bold;">ByVal</span> Source <span style="color: #151B8D; font-weight: bold;">As</span> <span style="color: #F660AB; font-weight: bold;">String</span>, _
   <span style="color: #151B8D; font-weight: bold;">ByVal</span> Destination <span style="color: #151B8D; font-weight: bold;">As</span> <span style="color: #F660AB; font-weight: bold;">String</span> _
)</pre></div></div>

<p>Los parámetros necesarios en esta función son muy fáciles de interpretar, estos son:<br />
<strong>Source</strong>: Indica la ruta del archivo de origen.<br />
<strong>Destination</strong>: Indica la ruta donde se copiará el archivo.</p>
<p><strong>Ejemplo de uso de la función <em>FileCopy()</em>:</strong></p>

<div class="wp_syntax"><div class="code"><pre class="vb" style="font-family:monospace;">FileCopy(<span style="color: #800000;">&quot;C:\Imagen_S.jpg&quot;</span>,<span style="color: #800000;">&quot;D:\Imagen_D.jpg&quot;</span>)</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.daw-labs.com/copiar-archivos-de-un-directorio-a-otro/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Calcular el factorial de un número</title>
		<link>http://www.daw-labs.com/calcular-el-factorial-de-un-numero/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=calcular-el-factorial-de-un-numero</link>
		<comments>http://www.daw-labs.com/calcular-el-factorial-de-un-numero/#comments</comments>
		<pubDate>Sun, 04 Apr 2010 21:35:14 +0000</pubDate>
		<dc:creator>WindHack</dc:creator>
				<category><![CDATA[Programación]]></category>
		<category><![CDATA[Visual Basic]]></category>
		<category><![CDATA[basic]]></category>
		<category><![CDATA[Calcular]]></category>
		<category><![CDATA[Ejemplo]]></category>
		<category><![CDATA[Funciones]]></category>
		<category><![CDATA[function]]></category>
		<category><![CDATA[Integer]]></category>
		<category><![CDATA[Navegador]]></category>
		<category><![CDATA[visual]]></category>

		<guid isPermaLink="false">http://daw-labs.co.cc/?p=111</guid>
		<description><![CDATA[Bueno, aclararles que no soy para nada un fan de VB, y tampoco es que me la lleve muy bien con él, pero en fin&#8230;Cuando toca hacer trabajos o actividades en determinado lenguaje no queda más alternativa ¿no?. Esta función hace poco la expuse aquí en ObjectPascal, ahora hice una traducción a Visual Basic, un&#8230;]]></description>
			<content:encoded><![CDATA[<p>Bueno, aclararles que no soy para nada un fan de VB, y tampoco es que me la lleve muy bien con él, pero en fin&#8230;Cuando toca hacer trabajos o actividades en determinado lenguaje no queda más alternativa ¿no?.</p>
<p>Esta función hace poco la expuse <a href="http://daw-labs.com/2010/03/funciones-sencillas-y-simples/" target="_self">aquí</a> en ObjectPascal, ahora hice una traducción a Visual Basic, un poco tosca pero es lo que hay, xD.</p>

<div class="wp_syntax"><div class="code"><pre class="vb" style="font-family:monospace;"><span style="color: #008000;">' ---------------------------------------
</span><span style="color: #008000;">'|---------- Función Factorial ----------|
</span><span style="color: #008000;">'|-- Calcula el factorial de un número --|
</span><span style="color: #008000;">'|--------- Autor: .:WindHack:. ---------|
</span><span style="color: #008000;">'|-- Sitio Web: http://daw-labs.com ---|
</span><span style="color: #008000;">' ---------------------------------------
</span><span style="color: #E56717; font-weight: bold;">Public</span> <span style="color: #E56717; font-weight: bold;">Function</span> Factorial(Num <span style="color: #151B8D; font-weight: bold;">As</span> <span style="color: #F660AB; font-weight: bold;">Double</span>) <span style="color: #151B8D; font-weight: bold;">As</span> <span style="color: #F660AB; font-weight: bold;">String</span>
<span style="color: #151B8D; font-weight: bold;">Dim</span> I <span style="color: #151B8D; font-weight: bold;">As</span> <span style="color: #F660AB; font-weight: bold;">Integer</span>
  <span style="color: #8D38C9; font-weight: bold;">If</span> Num &amp;gt;= 170 <span style="color: #8D38C9; font-weight: bold;">Then</span>
      Factorial = <span style="color: #800000;">&quot;Numero Infinito...&quot;</span>
  <span style="color: #8D38C9; font-weight: bold;">Else</span>
    <span style="color: #8D38C9; font-weight: bold;">For</span> I = 1 <span style="color: #8D38C9; font-weight: bold;">To</span> Num - 1
      Num = Num * I
      Factorial = Num
    <span style="color: #8D38C9; font-weight: bold;">Next</span>
<span style="color: #8D38C9; font-weight: bold;">End</span> <span style="color: #8D38C9; font-weight: bold;">If</span>
<span style="color: #8D38C9; font-weight: bold;">End</span> <span style="color: #E56717; font-weight: bold;">Function</span></pre></div></div>

<p>Con &#8220;recursividad&#8221;:</p>

<div class="wp_syntax"><div class="code"><pre class="vb" style="font-family:monospace;"><span style="color: #E56717; font-weight: bold;">Public</span> <span style="color: #E56717; font-weight: bold;">Function</span> FactorialR(Num <span style="color: #151B8D; font-weight: bold;">As</span> <span style="color: #F660AB; font-weight: bold;">Double</span>) <span style="color: #151B8D; font-weight: bold;">As</span> <span style="color: #F660AB; font-weight: bold;">Currency</span>
<span style="color: #8D38C9; font-weight: bold;">If</span> (Num &gt; 0) <span style="color: #8D38C9; font-weight: bold;">Then</span>
   FactorialR = Num * FactorialR(Num - 1)
<span style="color: #8D38C9; font-weight: bold;">Else</span>
   FactorialR = 1
<span style="color: #8D38C9; font-weight: bold;">End</span> <span style="color: #8D38C9; font-weight: bold;">If</span>
<span style="color: #8D38C9; font-weight: bold;">End</span> <span style="color: #E56717; font-weight: bold;">Function</span></pre></div></div>

<p><em>Saludos,</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.daw-labs.com/calcular-el-factorial-de-un-numero/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Obtener nombre de ventana activa [VB]</title>
		<link>http://www.daw-labs.com/obtener-nombre-de-ventana-activa-vb/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=obtener-nombre-de-ventana-activa-vb</link>
		<comments>http://www.daw-labs.com/obtener-nombre-de-ventana-activa-vb/#comments</comments>
		<pubDate>Sun, 04 Apr 2010 21:01:07 +0000</pubDate>
		<dc:creator>WindHack</dc:creator>
				<category><![CDATA[Programación]]></category>
		<category><![CDATA[Visual Basic]]></category>
		<category><![CDATA[activa]]></category>
		<category><![CDATA[amigo]]></category>
		<category><![CDATA[delphi]]></category>
		<category><![CDATA[Ejemplo]]></category>
		<category><![CDATA[estÃ]]></category>
		<category><![CDATA[function]]></category>
		<category><![CDATA[GetForegroundWindow]]></category>
		<category><![CDATA[llamada]]></category>
		<category><![CDATA[programada]]></category>
		<category><![CDATA[Swash]]></category>

		<guid isPermaLink="false">http://daw-labs.co.cc/?p=104</guid>
		<description><![CDATA[Esta es otra función muy parecida a la anteriormente mostrada en Delphi -&#62; La pueden ver aquí. Programada por mi amigo y compañero The Swash. '----------------------------------------------------------- ' Function : [GetTitleActiveApp] ' Type : [SNIPPET] ' Autor : [The Swash] ' DateTime : [31/03/2010] '----------------------------------------------------------- Option Explicit &#160; 'User32 Lib Apis Private Declare Function GetForegroundWindow Lib&#8230;]]></description>
			<content:encoded><![CDATA[<p>Esta es otra función muy parecida a la anteriormente mostrada en Delphi -&gt; La pueden ver <a href="http://daw-labs.co.cc/2010/03/obtener-el-nombre-de-la-ventana-activa/" target="_blank">aquí</a>.<br />
Programada por mi amigo y compañero The Swash.</p>

<div class="wp_syntax"><div class="code"><pre class="vb" style="font-family:monospace;"><span style="color: #008000;">'-----------------------------------------------------------
</span><span style="color: #008000;">' Function : [GetTitleActiveApp]
</span><span style="color: #008000;">' Type     : [SNIPPET]
</span><span style="color: #008000;">' Autor    : [The Swash]
</span><span style="color: #008000;">' DateTime : [31/03/2010]
</span><span style="color: #008000;">'-----------------------------------------------------------
</span><span style="color: #E56717; font-weight: bold;">Option</span> <span style="color: #E56717; font-weight: bold;">Explicit</span>
&nbsp;
<span style="color: #008000;">'User32 Lib Apis
</span><span style="color: #E56717; font-weight: bold;">Private</span> <span style="color: #151B8D; font-weight: bold;">Declare</span> <span style="color: #E56717; font-weight: bold;">Function</span> GetForegroundWindow Lib <span style="color: #800000;">&quot;user32&quot;</span> () <span style="color: #151B8D; font-weight: bold;">As</span> <span style="color: #F660AB; font-weight: bold;">Long</span>
<span style="color: #E56717; font-weight: bold;">Private</span> <span style="color: #151B8D; font-weight: bold;">Declare</span> <span style="color: #E56717; font-weight: bold;">Function</span> SendMessage Lib <span style="color: #800000;">&quot;user32&quot;</span> Alias <span style="color: #800000;">&quot;SendMessageA&quot;</span> (<span style="color: #151B8D; font-weight: bold;">ByVal</span> hwnd <span style="color: #151B8D; font-weight: bold;">As</span> <span style="color: #F660AB; font-weight: bold;">Long</span>, <span style="color: #151B8D; font-weight: bold;">ByVal</span> wMsg <span style="color: #151B8D; font-weight: bold;">As</span> <span style="color: #F660AB; font-weight: bold;">Long</span>, <span style="color: #151B8D; font-weight: bold;">ByVal</span> wParam <span style="color: #151B8D; font-weight: bold;">As</span> <span style="color: #F660AB; font-weight: bold;">Integer</span>, <span style="color: #151B8D; font-weight: bold;">ByVal</span> lParam <span style="color: #151B8D; font-weight: bold;">As</span> Any) <span style="color: #151B8D; font-weight: bold;">As</span> <span style="color: #F660AB; font-weight: bold;">Long</span>
&nbsp;
<span style="color: #008000;">'SendMessage Constants
</span>Const WM_GETTEXT = &amp;amp;HD
Const WM_GETTEXTLENGTH = &amp;amp;HE
&nbsp;
<span style="color: #E56717; font-weight: bold;">Public</span> <span style="color: #E56717; font-weight: bold;">Function</span> GetTitleActiveApp() <span style="color: #151B8D; font-weight: bold;">As</span> <span style="color: #F660AB; font-weight: bold;">String</span>
<span style="color: #151B8D; font-weight: bold;">Dim</span> hRet     <span style="color: #151B8D; font-weight: bold;">As</span> <span style="color: #F660AB; font-weight: bold;">Long</span>
<span style="color: #151B8D; font-weight: bold;">Dim</span> hSpace   <span style="color: #151B8D; font-weight: bold;">As</span> <span style="color: #F660AB; font-weight: bold;">Long</span>
<span style="color: #151B8D; font-weight: bold;">Dim</span> sBuffer  <span style="color: #151B8D; font-weight: bold;">As</span> <span style="color: #F660AB; font-weight: bold;">String</span>
&nbsp;
  hRet = GetForegroundWindow
  <span style="color: #8D38C9; font-weight: bold;">If</span> hRet &amp;lt;&amp;gt; 0 <span style="color: #8D38C9; font-weight: bold;">Then</span>
   hSpace = SendMessage(hRet, WM_GETTEXTLENGTH, 0&amp;amp;, 0&amp;amp;) + 1
   <span style="color: #8D38C9; font-weight: bold;">If</span> hSpace &amp;gt; 0 <span style="color: #8D38C9; font-weight: bold;">Then</span>
    sBuffer = Space$(hSpace)
    <span style="color: #E56717; font-weight: bold;">Call</span> SendMessage(hRet, WM_GETTEXT, hSpace, sBuffer)
   <span style="color: #8D38C9; font-weight: bold;">End</span> <span style="color: #8D38C9; font-weight: bold;">If</span>
  <span style="color: #8D38C9; font-weight: bold;">End</span> <span style="color: #8D38C9; font-weight: bold;">If</span>
&nbsp;
  GetTitleActiveApp = Trim(sBuffer)
&nbsp;
<span style="color: #8D38C9; font-weight: bold;">End</span> <span style="color: #E56717; font-weight: bold;">Function</span></pre></div></div>

<p>Un ejemplo de llamada puede ser:</p>

<div class="wp_syntax"><div class="code"><pre class="vb" style="font-family:monospace;">MsgBox GetTitleActiveApp
 </pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.daw-labs.com/obtener-nombre-de-ventana-activa-vb/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

