<?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>mundodelphi &#187; system</title>
	<atom:link href="http://www.webserveis.com/mundodelphi/tag/system/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.webserveis.com/mundodelphi</link>
	<description>programacion en delphi</description>
	<lastBuildDate>Mon, 10 May 2010 12:44:24 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Realizar una pausa, el delay en delphi</title>
		<link>http://www.webserveis.com/mundodelphi/2010/01/28/realizar-una-pausa-el-delay-en-delphi/</link>
		<comments>http://www.webserveis.com/mundodelphi/2010/01/28/realizar-una-pausa-el-delay-en-delphi/#comments</comments>
		<pubDate>Thu, 28 Jan 2010 14:34:28 +0000</pubDate>
		<dc:creator>neuronic</dc:creator>
				<category><![CDATA[Trucos Delphi]]></category>
		<category><![CDATA[system]]></category>
		<category><![CDATA[truco]]></category>

		<guid isPermaLink="false">http://www.webserveis.com/mundodelphi/?p=236</guid>
		<description><![CDATA[Hacer que el programa espere un tiempo, como la función delay de pascal, tiempo de espera en delphi, realizar una pausa con delphi, retardar ejecutación con delay
En pascal hay la función delay que sirve para esperar un tiempo determinado antes de ejecutar la siguiente instrucción, en delphi carece de la función delay, pero con el [...]]]></description>
			<content:encoded><![CDATA[<p><small>Hacer que el programa espere un tiempo, como la función delay de pascal, tiempo de espera en delphi, realizar una pausa con delphi, retardar ejecutación con delay</small></p>
<p>En pascal hay la función delay que sirve para esperar un tiempo determinado antes de ejecutar la siguiente instrucción, en delphi carece de la función delay, pero con el siguiente truco conseguimos dicho efecto, podemos programar retardos en milisegundos, recuerda un segundo tiene 1000 milisegundos</p>
<pre class="brush: delphi;">
procedure SYS_Delay(msecs:integer);
var
 FirstTickCount:longint;
begin
 FirstTickCount:=GetTickCount;
 repeat
 Application.ProcessMessages; {allowing access to other
 controls, etc.}
 until ((GetTickCount-FirstTickCount) &gt;= Longint(msecs));
end;
</pre>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://delicious.com/post?url=http://www.webserveis.com/mundodelphi/2010/01/28/realizar-una-pausa-el-delay-en-delphi/&amp;title=Realizar+una+pausa%2C+el+delay+en+delphi" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.webserveis.com/mundodelphi/2010/01/28/realizar-una-pausa-el-delay-en-delphi/&amp;t=Realizar+una+pausa%2C+el+delay+en+delphi" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Realizar+una+pausa%2C+el+delay+en+delphi+-+http://b2l.me/tsdcs+&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://www.webserveis.com/mundodelphi/2010/01/28/realizar-una-pausa-el-delay-en-delphi/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-meneame">
			<a href="http://meneame.net/submit.php?url=http://www.webserveis.com/mundodelphi/2010/01/28/realizar-una-pausa-el-delay-en-delphi/" rel="nofollow" class="external" title="Submit this to Meneame">Submit this to Meneame</a>
		</li>
		<li class="sexy-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.webserveis.com/mundodelphi/2010/01/28/realizar-una-pausa-el-delay-en-delphi/&amp;n=Realizar+una+pausa%2C+el+delay+en+delphi&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://www.webserveis.com/mundodelphi/2010/01/28/realizar-una-pausa-el-delay-en-delphi/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-mail">
			<a href="mailto:?subject=%22Realizar%20una%20pausa%2C%20el%20delay%20en%20delphi%22&amp;body=I+thought+this+article+might+interest+you.%0A%0A%22Hacer%20que%20el%20programa%20espere%20un%20tiempo%2C%20como%20la%20funci%C3%B3n%20delay%20de%20pascal%2C%20tiempo%20de%20espera%20en%20delphi%2C%20realizar%20una%20pausa%20con%20delphi%2C%20retardar%20ejecutaci%C3%B3n%20con%20delay%0D%0A%0D%0AEn%20pascal%20hay%20la%20funci%C3%B3n%20delay%20que%20sirve%20para%20esperar%20un%20tiempo%20determinado%20antes%20de%20ejecutar%20la%20siguiente%20instrucci%C3%B3n%2C%20en%20delphi%20%22%0A%0AYou+can+read+the+full+article+here%3A%20http://www.webserveis.com/mundodelphi/2010/01/28/realizar-una-pausa-el-delay-en-delphi/" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="sexy-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.webserveis.com/mundodelphi/2010/01/28/realizar-una-pausa-el-delay-en-delphi/&amp;title=Realizar+una+pausa%2C+el+delay+en+delphi" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="sexy-googlereader">
			<a href="http://www.google.com/reader/link?url=http://www.webserveis.com/mundodelphi/2010/01/28/realizar-una-pausa-el-delay-en-delphi/&amp;title=Realizar+una+pausa%2C+el+delay+en+delphi&amp;srcUrl=http://www.webserveis.com/mundodelphi/2010/01/28/realizar-una-pausa-el-delay-en-delphi/&amp;srcTitle=Realizar+una+pausa%2C+el+delay+en+delphi&amp;snippet=POST_SUMMARY" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://www.webserveis.com/mundodelphi/2010/01/28/realizar-una-pausa-el-delay-en-delphi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Abrir el panel de control con delphi</title>
		<link>http://www.webserveis.com/mundodelphi/2009/07/29/abrir-el-panel-de-control-con-delphi/</link>
		<comments>http://www.webserveis.com/mundodelphi/2009/07/29/abrir-el-panel-de-control-con-delphi/#comments</comments>
		<pubDate>Wed, 29 Jul 2009 15:43:18 +0000</pubDate>
		<dc:creator>neuronic</dc:creator>
				<category><![CDATA[Trucos Delphi]]></category>
		<category><![CDATA[ShellExecute]]></category>
		<category><![CDATA[system]]></category>

		<guid isPermaLink="false">http://www.webserveis.com/mundodelphi/?p=220</guid>
		<description><![CDATA[Mostrar el panel de control de windows con delphi y como ejecutar un applet del panel de control especifico
el panel de control de windows lo podemos llamar con la libreria shell32.dll
ShellExecute(Form1.Handle, nil, &#8216;rundll32.exe&#8217;,  &#8217;shell32.dll,Control_RunDLL&#8217;, nil, W_SHOW);
recueda en cargar ShellApi en el uses para utilizar la funcion ShellExecute
si queremos abrir un applet determinado que se encuentra [...]]]></description>
			<content:encoded><![CDATA[<p>Mostrar el panel de control de windows con delphi y como ejecutar un applet del panel de control especifico<br />
el panel de control de windows lo podemos llamar con la libreria shell32.dll</p>
<p><span style="color: #3366ff;">ShellExecute(Form1.Handle, nil, &#8216;rundll32.exe&#8217;,  &#8217;shell32.dll,Control_RunDLL&#8217;, nil, W_SHOW);</span></p>
<p>recueda en cargar ShellApi en el uses para utilizar la funcion ShellExecute</p>
<p>si queremos abrir un applet determinado que se encuentra dentro del panel de control de windows</p>
<p><span style="color: #3366ff;">ShellExecute(Form1.Handle, nil, &#8216;rundll32.exe&#8217;,&#8217;shell32.dll,Control_RunDLL mmsys.cpl&#8217;, nil, SW_SHOW);</span></p>
<p>mmsys.cpl es el applet Multimedia:</p>
<p>se puede especificar el tab que queremos que se abre, aqui se especifica 1 que seria la segunda solapa de applet multimedia</p>
<p><span style="color: #3366ff;">ShellExecute(Form1.Handle, nil, &#8216;rundll32.exe&#8217;,&#8217;shell32.dll,Control_RunDLL mmsys.cpl,,1&#8242;, nil, SW_SHOW);</span></p>
<p><strong>Lista de applets de windows</strong></p>
<p>Podemos hacer una busqueda de archivos con .cpl y obtener sus nombres</p>
<table style="border-collapse: collapse; width: 255pt;" border="0" cellspacing="0" cellpadding="0" width="340">
<col style="width: 160pt;" width="213"></col>
<col style="width: 95pt;" width="127"></col>
<tbody>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt; width: 160pt;" width="213" height="17">AC3   Filter</td>
<td style="width: 95pt;" width="127">ac3filter.cpl</td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt;" height="17">Adobe Gamma</td>
<td>Adobe Gamma.cpl</td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt;" height="17">Adobe   Version Cue CS2</td>
<td>VersionCueCS2.cpl</td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt;" height="17">Application   paths</td>
<td>apppaths.cpl</td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt;" height="17">Autodesk   Plotter Manager</td>
<td>plotman.cpl</td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt;" height="17">AvantGo   Connect</td>
<td>agcpl.cpl</td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt;" height="17">Avira   AntiVir PersonalEdition</td>
<td>avconfig.cpl</td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt;" height="17">BACKPACK   Finder</td>
<td>bpcpl.cpl</td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt;" height="17">BDE   Administrator</td>
<td>bdeadmin.cpl</td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt;" height="17">ClearCase</td>
<td>cc.cpl</td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt;" height="17">Color   Settings</td>
<td>3dcc.cpl</td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt;" height="17">Compaq   Diagnostics</td>
<td>cpqdiag.cpl</td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt;" height="17">Control   Panel</td>
<td>controlp.cpl</td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt;" height="17">Creative   Element Power Tools</td>
<td></td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt;" height="17">Corel   Versions</td>
<td>verscpl.cpl</td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt;" height="17">DANS</td>
<td>danetsvc.cpl</td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt;" height="17">DiskAccess</td>
<td>dacfg.cpl</td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt;" height="17">Folder size</td>
<td>FolderSize.cpl</td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt;" height="17">FirebirdSQL   Service Manager</td>
<td>fmmgr.cpl</td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt;" height="17">HP Jetadmin</td>
<td>jetadmin.cpl</td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt;" height="17">HP Lock</td>
<td>Hplock.cpl</td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt;" height="17">IconPackager</td>
<td>ipcpl.cpl</td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt;" height="17">ImDisk   Virtual Disk Driver</td>
<td>imdisk.cpl</td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt;" height="17">Intel   Extreme Graphics</td>
<td>igfxcpl.cpl</td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt;" height="17">IP   Office Voicemail Pro</td>
<td>ims.cpl</td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt;" height="17">Java</td>
<td>jpicpl32.cpl</td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt;" height="17">JInitiator   1.x.y.z</td>
<td>plugincpl1xyz.cpl</td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt;" height="17">MSConfig</td>
<td>MSConfig.cpl</td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt;" height="17">MultiSite</td>
<td>ms.cpl</td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt;" height="17">Nero   BurnRights</td>
<td>NeroBurnRights.cpl</td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt;" height="17">nVIDIA   Control panel</td>
<td>nvidia.cpl</td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt;" height="17">Pointer   Devices</td>
<td>tbctlpnl.cpl</td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt;" height="17">Quicktime</td>
<td>quicktime.cpl</td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt;" height="17">RealPlayer</td>
<td>prefscpl.cpl</td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt;" height="17">Realtek   AC97 Audio Control Panel</td>
<td>alsndmgr.cpl</td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt;" height="17">RESTrick   Control Panel</td>
<td>rest2.cpl</td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt;" height="17">Safarp</td>
<td>safarp.cpl</td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt;" height="17">Send To Toys</td>
<td>sendtotoys.cpl</td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt;" height="17">Services   and Devices</td>
<td>pserv.cpl</td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt;" height="17">SNTP Service</td>
<td>sntpserv.cpl</td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt;" height="17">Startup</td>
<td>startup.cpl</td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt;" height="17">Symantec   LiveUpdate</td>
<td>s32lucp2.cpl</td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt;" height="17">System   Information</td>
<td>Sancpl.cpl</td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt;" height="17">System   Info for Windows</td>
<td>siw.cpl</td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt;" height="17">Trust-No-Exe</td>
<td>trustnoexe.cpl</td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt;" height="17">VMware Tools</td>
<td>VMControlPanel.cpl</td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt;" height="17">WIBU-KEY</td>
<td>wibuke32.cpl</td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt;" height="17">Winlogos</td>
<td>wnlgo.cpl</td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td style="height: 12.75pt;" height="17">X-Setup Pro</td>
<td>xqdcXSPApplet.cpl</td>
</tr>
</tbody>
</table>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://delicious.com/post?url=http://www.webserveis.com/mundodelphi/2009/07/29/abrir-el-panel-de-control-con-delphi/&amp;title=Abrir+el+panel+de+control+con+delphi" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.webserveis.com/mundodelphi/2009/07/29/abrir-el-panel-de-control-con-delphi/&amp;t=Abrir+el+panel+de+control+con+delphi" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Abrir+el+panel+de+control+con+delphi+-+http://b2l.me/tsdc3+&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://www.webserveis.com/mundodelphi/2009/07/29/abrir-el-panel-de-control-con-delphi/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-meneame">
			<a href="http://meneame.net/submit.php?url=http://www.webserveis.com/mundodelphi/2009/07/29/abrir-el-panel-de-control-con-delphi/" rel="nofollow" class="external" title="Submit this to Meneame">Submit this to Meneame</a>
		</li>
		<li class="sexy-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.webserveis.com/mundodelphi/2009/07/29/abrir-el-panel-de-control-con-delphi/&amp;n=Abrir+el+panel+de+control+con+delphi&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://www.webserveis.com/mundodelphi/2009/07/29/abrir-el-panel-de-control-con-delphi/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-mail">
			<a href="mailto:?subject=%22Abrir%20el%20panel%20de%20control%20con%20delphi%22&amp;body=I+thought+this+article+might+interest+you.%0A%0A%22Mostrar%20el%20panel%20de%20control%20de%20windows%20con%20delphi%20y%20como%20ejecutar%20un%20applet%20del%20panel%20de%20control%20especifico%0D%0Ael%20panel%20de%20control%20de%20windows%20lo%20podemos%20llamar%20con%20la%20libreria%20shell32.dll%0D%0A%0D%0AShellExecute%28Form1.Handle%2C%20nil%2C%20%27rundll32.exe%27%2C%C2%A0%20%27shell32.dll%2CControl_RunDLL%27%2C%20nil%2C%20W_SHOW%29%3B%0D%0A%0D%0Arecueda%20en%20car%22%0A%0AYou+can+read+the+full+article+here%3A%20http://www.webserveis.com/mundodelphi/2009/07/29/abrir-el-panel-de-control-con-delphi/" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="sexy-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.webserveis.com/mundodelphi/2009/07/29/abrir-el-panel-de-control-con-delphi/&amp;title=Abrir+el+panel+de+control+con+delphi" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="sexy-googlereader">
			<a href="http://www.google.com/reader/link?url=http://www.webserveis.com/mundodelphi/2009/07/29/abrir-el-panel-de-control-con-delphi/&amp;title=Abrir+el+panel+de+control+con+delphi&amp;srcUrl=http://www.webserveis.com/mundodelphi/2009/07/29/abrir-el-panel-de-control-con-delphi/&amp;srcTitle=Abrir+el+panel+de+control+con+delphi&amp;snippet=POST_SUMMARY" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://www.webserveis.com/mundodelphi/2009/07/29/abrir-el-panel-de-control-con-delphi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mostrar dialogo propiedades de fecha y hora</title>
		<link>http://www.webserveis.com/mundodelphi/2009/05/26/mostrar-dialogo-propiedades-de-fecha-y-hora/</link>
		<comments>http://www.webserveis.com/mundodelphi/2009/05/26/mostrar-dialogo-propiedades-de-fecha-y-hora/#comments</comments>
		<pubDate>Tue, 26 May 2009 20:44:06 +0000</pubDate>
		<dc:creator>neuronic</dc:creator>
				<category><![CDATA[Trucos Delphi]]></category>
		<category><![CDATA[system]]></category>
		<category><![CDATA[truco]]></category>

		<guid isPermaLink="false">http://www.webserveis.com/mundodelphi/?p=213</guid>
		<description><![CDATA[open the Date/Time Properties window with delphi,abrir propiedades de fecha y hora en delphi
Truco para Mostrar el dialogo de sistema &#8220;propiedades de fecha y hora&#8221;

uses ShellApi;
procedure TForm1.Button1Click(Sender: TObject);
begin
ShellExecute(Handle, 'open', 'control', 'date/time', nil, SW_SHOW);
end;

Relacionado: Mostrar el Administrador de Tareas
Fuente:  delphitricks.com





		
			Share this on del.icio.us
		
		
			Share this on Facebook
		
		
			Tweet This!
		
		
			Subscribe to the comments for this post?
		
		
			Submit this to Meneame
		
		
			Blog [...]]]></description>
			<content:encoded><![CDATA[<p><span style="color: #888888;"><small>open the Date/Time Properties window with delphi,abrir propiedades de fecha y hora en delphi</small></span></p>
<p>Truco para Mostrar el dialogo de sistema &#8220;propiedades de fecha y hora&#8221;</p>
<pre class="brush: delphi;">
uses ShellApi;
procedure TForm1.Button1Click(Sender: TObject);
begin
ShellExecute(Handle, 'open', 'control', 'date/time', nil, SW_SHOW);
end;
</pre>
<p><strong>Relacionado</strong>: <a title="Permanent Link: Mostrar el Administrador de Tareas" rel="bookmark" href="../2009/05/26/mostrar-el-administrador-de-tareas/">Mostrar el Administrador de Tareas</a><br />
Fuente:  <a title="call the systemtime dialog delphi" href="http://www.delphitricks.com/source-code/windows/call_the_systemtime_dialog.html" target="_blank">delphitricks.com</a></p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://delicious.com/post?url=http://www.webserveis.com/mundodelphi/2009/05/26/mostrar-dialogo-propiedades-de-fecha-y-hora/&amp;title=Mostrar+dialogo+propiedades+de+fecha+y+hora" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.webserveis.com/mundodelphi/2009/05/26/mostrar-dialogo-propiedades-de-fecha-y-hora/&amp;t=Mostrar+dialogo+propiedades+de+fecha+y+hora" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Mostrar+dialogo+propiedades+de+fecha+y+hora+-+http://b2l.me/tsp9a+&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://www.webserveis.com/mundodelphi/2009/05/26/mostrar-dialogo-propiedades-de-fecha-y-hora/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-meneame">
			<a href="http://meneame.net/submit.php?url=http://www.webserveis.com/mundodelphi/2009/05/26/mostrar-dialogo-propiedades-de-fecha-y-hora/" rel="nofollow" class="external" title="Submit this to Meneame">Submit this to Meneame</a>
		</li>
		<li class="sexy-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.webserveis.com/mundodelphi/2009/05/26/mostrar-dialogo-propiedades-de-fecha-y-hora/&amp;n=Mostrar+dialogo+propiedades+de+fecha+y+hora&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://www.webserveis.com/mundodelphi/2009/05/26/mostrar-dialogo-propiedades-de-fecha-y-hora/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-mail">
			<a href="mailto:?subject=%22Mostrar%20dialogo%20propiedades%20de%20fecha%20y%20hora%22&amp;body=I+thought+this+article+might+interest+you.%0A%0A%22open%20the%20Date%2FTime%20Properties%20window%20with%20delphi%2Cabrir%20propiedades%20de%20fecha%20y%20hora%20en%20delphi%0D%0A%0D%0ATruco%20para%20Mostrar%20el%20dialogo%20de%20sistema%20%22propiedades%20de%20fecha%20y%20hora%22%0D%0A%0D%0A%5Bdelphi%5D%0D%0Auses%20ShellApi%3B%0D%0Aprocedure%20TForm1.Button1Click%28Sender%3A%20TObject%29%3B%0D%0Abegin%0D%0AShellExecute%28Handle%2C%20%27open%27%2C%20%27control%27%2C%20%27date%2Fti%22%0A%0AYou+can+read+the+full+article+here%3A%20http://www.webserveis.com/mundodelphi/2009/05/26/mostrar-dialogo-propiedades-de-fecha-y-hora/" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="sexy-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.webserveis.com/mundodelphi/2009/05/26/mostrar-dialogo-propiedades-de-fecha-y-hora/&amp;title=Mostrar+dialogo+propiedades+de+fecha+y+hora" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="sexy-googlereader">
			<a href="http://www.google.com/reader/link?url=http://www.webserveis.com/mundodelphi/2009/05/26/mostrar-dialogo-propiedades-de-fecha-y-hora/&amp;title=Mostrar+dialogo+propiedades+de+fecha+y+hora&amp;srcUrl=http://www.webserveis.com/mundodelphi/2009/05/26/mostrar-dialogo-propiedades-de-fecha-y-hora/&amp;srcTitle=Mostrar+dialogo+propiedades+de+fecha+y+hora&amp;snippet=POST_SUMMARY" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://www.webserveis.com/mundodelphi/2009/05/26/mostrar-dialogo-propiedades-de-fecha-y-hora/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mostrar el Administrador de Tareas</title>
		<link>http://www.webserveis.com/mundodelphi/2009/05/26/mostrar-el-administrador-de-tareas/</link>
		<comments>http://www.webserveis.com/mundodelphi/2009/05/26/mostrar-el-administrador-de-tareas/#comments</comments>
		<pubDate>Tue, 26 May 2009 19:34:20 +0000</pubDate>
		<dc:creator>neuronic</dc:creator>
				<category><![CDATA[Trucos Delphi]]></category>
		<category><![CDATA[system]]></category>
		<category><![CDATA[trucos]]></category>

		<guid isPermaLink="false">http://www.webserveis.com/mundodelphi/?p=212</guid>
		<description><![CDATA[Truco para abrir el Administrador de Tareas desde Delphi

uses ShellApi;

procedure TForm1.Button1Click(Sender: TObject);
begin
ShellExecute (HWND(nil), 'open', 'taskmgr', '', '', SW_SHOWNORMAL);
end;

Relacionado: Mostrar dialogo propiedades de fecha y hora
Fuente: delphitricks





		
			Share this on del.icio.us
		
		
			Share this on Facebook
		
		
			Tweet This!
		
		
			Subscribe to the comments for this post?
		
		
			Submit this to Meneame
		
		
			Blog this on Blogger
		
		
			Share this on Technorati
		
		
			Email this to a friend?
		
		
			Add this to Google [...]]]></description>
			<content:encoded><![CDATA[<p>Truco para abrir el Administrador de Tareas desde Delphi</p>
<pre class="brush: delphi;">
uses ShellApi;

procedure TForm1.Button1Click(Sender: TObject);
begin
ShellExecute (HWND(nil), 'open', 'taskmgr', '', '', SW_SHOWNORMAL);
end;
</pre>
<p><strong>Relacionado:</strong> <a title="Permanent Link: Mostrar dialogo propiedades de fecha y hora" rel="bookmark" href="../2009/05/26/mostrar-dialogo-propiedades-de-fecha-y-hora/">Mostrar dialogo propiedades de fecha y hora</a><br />
Fuente: <a title="Mostrar el administardor de tareas" href="http://www.delphitricks.com/source-code/windows/open_windowss_task_manager.html" target="_blank">delphitricks</a></p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://delicious.com/post?url=http://www.webserveis.com/mundodelphi/2009/05/26/mostrar-el-administrador-de-tareas/&amp;title=Mostrar+el+Administrador+de+Tareas" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.webserveis.com/mundodelphi/2009/05/26/mostrar-el-administrador-de-tareas/&amp;t=Mostrar+el+Administrador+de+Tareas" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Mostrar+el+Administrador+de+Tareas+-+http://b2l.me/twmc8+&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://www.webserveis.com/mundodelphi/2009/05/26/mostrar-el-administrador-de-tareas/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-meneame">
			<a href="http://meneame.net/submit.php?url=http://www.webserveis.com/mundodelphi/2009/05/26/mostrar-el-administrador-de-tareas/" rel="nofollow" class="external" title="Submit this to Meneame">Submit this to Meneame</a>
		</li>
		<li class="sexy-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.webserveis.com/mundodelphi/2009/05/26/mostrar-el-administrador-de-tareas/&amp;n=Mostrar+el+Administrador+de+Tareas&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://www.webserveis.com/mundodelphi/2009/05/26/mostrar-el-administrador-de-tareas/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-mail">
			<a href="mailto:?subject=%22Mostrar%20el%20Administrador%20de%20Tareas%22&amp;body=I+thought+this+article+might+interest+you.%0A%0A%22Truco%20para%20abrir%20el%20Administrador%20de%20Tareas%20desde%20Delphi%0D%0A%0D%0A%5Bdelphi%5D%0D%0Auses%20ShellApi%3B%0D%0A%0D%0Aprocedure%20TForm1.Button1Click%28Sender%3A%20TObject%29%3B%0D%0Abegin%0D%0AShellExecute%20%28HWND%28nil%29%2C%20%27open%27%2C%20%27taskmgr%27%2C%20%27%27%2C%20%27%27%2C%20SW_SHOWNORMAL%29%3B%0D%0Aend%3B%0D%0A%5B%2Fdelphi%5D%0D%0A%0D%0ARelacionado%3A%20Mostrar%20dialogo%20propiedades%20de%20fecha%20y%20hora%0D%0AFuente%3A%20de%22%0A%0AYou+can+read+the+full+article+here%3A%20http://www.webserveis.com/mundodelphi/2009/05/26/mostrar-el-administrador-de-tareas/" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="sexy-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.webserveis.com/mundodelphi/2009/05/26/mostrar-el-administrador-de-tareas/&amp;title=Mostrar+el+Administrador+de+Tareas" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="sexy-googlereader">
			<a href="http://www.google.com/reader/link?url=http://www.webserveis.com/mundodelphi/2009/05/26/mostrar-el-administrador-de-tareas/&amp;title=Mostrar+el+Administrador+de+Tareas&amp;srcUrl=http://www.webserveis.com/mundodelphi/2009/05/26/mostrar-el-administrador-de-tareas/&amp;srcTitle=Mostrar+el+Administrador+de+Tareas&amp;snippet=POST_SUMMARY" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://www.webserveis.com/mundodelphi/2009/05/26/mostrar-el-administrador-de-tareas/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mostrar,Ocultar,Bloquear,Desbloquear barra de tareas</title>
		<link>http://www.webserveis.com/mundodelphi/2009/05/23/mostrar-ocultar-bloquear-desbloquear-barra-de-tareas/</link>
		<comments>http://www.webserveis.com/mundodelphi/2009/05/23/mostrar-ocultar-bloquear-desbloquear-barra-de-tareas/#comments</comments>
		<pubDate>Sat, 23 May 2009 16:56:44 +0000</pubDate>
		<dc:creator>neuronic</dc:creator>
				<category><![CDATA[Trucos Delphi]]></category>
		<category><![CDATA[system]]></category>
		<category><![CDATA[truco]]></category>

		<guid isPermaLink="false">http://www.webserveis.com/mundodelphi/?p=210</guid>
		<description><![CDATA[poner visible la barra de tareas en delphi, bloquear barra de tareas en delphi, desbloquear barra de tareas en delphi, ocultar barra de tareas en delphi, visible taskbar, hide taskbar,showtaskbar,enable taskbar with delphi
Con la función SetTaskBar podemos ocultar,mostrar,bloquear,desbloquear la barra de tareas de windows
 SetTaskBar(TaskBarVisible:boolean=true;TaskBarEnabled:boolean=true): Boolean;

Los parametros que tenemos que pasar son
TaskBarVisible: Indicamos si queremos [...]]]></description>
			<content:encoded><![CDATA[<p><small><span style="color: #808080;">poner visible la barra de tareas en delphi, bloquear barra de tareas en delphi, desbloquear barra de tareas en delphi, ocultar barra de tareas en delphi, visible taskbar, hide taskbar,showtaskbar,enable taskbar with delphi</span></small></p>
<p>Con la función <strong>SetTaskBar </strong>podemos ocultar,mostrar,bloquear,desbloquear la barra de tareas de windows</p>
<p><span style="color: #3366ff;"><strong> SetTaskBar</strong>(<strong><span style="color: #888888;">TaskBarVisible</span></strong>:boolean=true;<strong><span style="color: #888888;">TaskBarEnabled</span></strong>:boolean=true): Boolean;<br />
</span></p>
<p>Los parametros que tenemos que pasar son<br />
<strong>TaskBarVisible</strong>: Indicamos si queremos mostrar o ocultar la barra de tareas<br />
<strong>TaskBarEnabled</strong>: Indicamos si queremos que este desbloqueada o bloqueada</p>
<p><strong>Código de la función SetTaskBar</strong></p>
<pre class="brush: delphi;">
var
WndTaskbar: HWND;
begin
Result:=true;
WndTaskbar := FindWindow('Shell_TrayWnd', nil);//buscamos la barra de tareas
if TaskBarVisible then
ShowWindow(wndTaskbar, SW_SHOW)
else
ShowWindow(wndTaskbar, SW_HIDE);
if TaskBarEnabled then
EnableWindow(wndTaskbar, True)
else
EnableWindow(wndTaskbar, False);
end;
</pre>
<p><strong>Su uso</strong></p>
<pre class="brush: delphi;">
SetTaskBar(true,false); //bloquea la barra de tareas
SetTaskBar(true,true); //desbloquea la barra de tareas
SetTaskBar(false); //oculta la barra de tareas
SetTaskBar(true); //muestra la barra de tares
SetTaskBar(); //muestra y desbloquea la barra de tareas
</pre>
<p><strong>Inspiración</strong>: <a title="Disable/enable/hide/show taskbar" href="http://www.delphitricks.com/source-code/windows/disableenablehideshow_taskbar.html" target="_blank">DelphiTricks</a></p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://delicious.com/post?url=http://www.webserveis.com/mundodelphi/2009/05/23/mostrar-ocultar-bloquear-desbloquear-barra-de-tareas/&amp;title=Mostrar%2COcultar%2CBloquear%2CDesbloquear+barra+de+tareas" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.webserveis.com/mundodelphi/2009/05/23/mostrar-ocultar-bloquear-desbloquear-barra-de-tareas/&amp;t=Mostrar%2COcultar%2CBloquear%2CDesbloquear+barra+de+tareas" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Mostrar%2COcultar%2CBloquear%2CDesbloquear+barra+de+tareas+-+http://b2l.me/twf6d+&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://www.webserveis.com/mundodelphi/2009/05/23/mostrar-ocultar-bloquear-desbloquear-barra-de-tareas/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-meneame">
			<a href="http://meneame.net/submit.php?url=http://www.webserveis.com/mundodelphi/2009/05/23/mostrar-ocultar-bloquear-desbloquear-barra-de-tareas/" rel="nofollow" class="external" title="Submit this to Meneame">Submit this to Meneame</a>
		</li>
		<li class="sexy-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.webserveis.com/mundodelphi/2009/05/23/mostrar-ocultar-bloquear-desbloquear-barra-de-tareas/&amp;n=Mostrar%2COcultar%2CBloquear%2CDesbloquear+barra+de+tareas&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://www.webserveis.com/mundodelphi/2009/05/23/mostrar-ocultar-bloquear-desbloquear-barra-de-tareas/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-mail">
			<a href="mailto:?subject=%22Mostrar%2COcultar%2CBloquear%2CDesbloquear%20barra%20de%20tareas%22&amp;body=I+thought+this+article+might+interest+you.%0A%0A%22poner%20visible%20la%20barra%20de%20tareas%20en%20delphi%2C%20bloquear%20barra%20de%20tareas%20en%20delphi%2C%20desbloquear%20barra%20de%20tareas%20en%20delphi%2C%20ocultar%20barra%20de%20tareas%20en%20delphi%2C%20visible%20taskbar%2C%20hide%20taskbar%2Cshowtaskbar%2Cenable%20taskbar%20with%20delphi%0D%0A%0D%0ACon%20la%20funci%C3%B3n%20SetTaskBar%20podemos%20ocultar%2Cmostrar%2Cbloquear%2Cdesbloquear%20la%22%0A%0AYou+can+read+the+full+article+here%3A%20http://www.webserveis.com/mundodelphi/2009/05/23/mostrar-ocultar-bloquear-desbloquear-barra-de-tareas/" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="sexy-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.webserveis.com/mundodelphi/2009/05/23/mostrar-ocultar-bloquear-desbloquear-barra-de-tareas/&amp;title=Mostrar%2COcultar%2CBloquear%2CDesbloquear+barra+de+tareas" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="sexy-googlereader">
			<a href="http://www.google.com/reader/link?url=http://www.webserveis.com/mundodelphi/2009/05/23/mostrar-ocultar-bloquear-desbloquear-barra-de-tareas/&amp;title=Mostrar%2COcultar%2CBloquear%2CDesbloquear+barra+de+tareas&amp;srcUrl=http://www.webserveis.com/mundodelphi/2009/05/23/mostrar-ocultar-bloquear-desbloquear-barra-de-tareas/&amp;srcTitle=Mostrar%2COcultar%2CBloquear%2CDesbloquear+barra+de+tareas&amp;snippet=POST_SUMMARY" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://www.webserveis.com/mundodelphi/2009/05/23/mostrar-ocultar-bloquear-desbloquear-barra-de-tareas/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
