<?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>DelphiTips.net &#187; icon</title>
	<atom:link href="http://www.delphitips.net/tag/icon/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.delphitips.net</link>
	<description>...free Delphi tips &#38; source code repository</description>
	<lastBuildDate>Fri, 24 Jul 2009 22:19:02 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Directory structure with associated icons and file info in ListView</title>
		<link>http://www.delphitips.net/2007/10/16/directory-structure-with-associated-icons-and-file-info-in-listview/</link>
		<comments>http://www.delphitips.net/2007/10/16/directory-structure-with-associated-icons-and-file-info-in-listview/#comments</comments>
		<pubDate>Tue, 16 Oct 2007 20:52:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Files]]></category>
		<category><![CDATA[Forms]]></category>
		<category><![CDATA[System]]></category>
		<category><![CDATA[directory]]></category>
		<category><![CDATA[file]]></category>
		<category><![CDATA[icon]]></category>
		<category><![CDATA[ListView]]></category>
		<category><![CDATA[structure]]></category>

		<guid isPermaLink="false">http://www.delphitips.net/2007/10/16/directory-structure-with-associated-icons-and-file-info-in-listview/</guid>
		<description><![CDATA[Using ShellAPI unit and few lines of code, we can load directory structure into ListView and show associated icons and information for each file.
First of all, add ShellAPI unit to uses list. Place ListView and ImageList on form. Into ImageList component, we will store icons for each file.

unit Unit1;
&#160;
interface
&#160;
uses
  Windows, Messages, SysUtils, Variants, Classes, [...]]]></description>
		<wfw:commentRss>http://www.delphitips.net/2007/10/16/directory-structure-with-associated-icons-and-file-info-in-listview/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hide / show all icons on desktop</title>
		<link>http://www.delphitips.net/2007/08/18/hide-show-all-icons-on-desktop/</link>
		<comments>http://www.delphitips.net/2007/08/18/hide-show-all-icons-on-desktop/#comments</comments>
		<pubDate>Sat, 18 Aug 2007 20:27:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[System]]></category>
		<category><![CDATA[desktop]]></category>
		<category><![CDATA[hide]]></category>
		<category><![CDATA[icon]]></category>
		<category><![CDATA[show]]></category>

		<guid isPermaLink="false">http://www.delphitips.net/2007/08/18/hide-show-all-icons-on-desktop/</guid>
		<description><![CDATA[Another &#8220;one-line code trick&#8221; and probably completely useless.  

procedure TForm1.Button1Click&#40;Sender: TObject&#41;;
//hide desktop icons
begin
  ShowWindow&#40;FindWindow&#40;nil, 'Program Manager'&#41;,SW_HIDE&#41;;
end;
&#160;
procedure TForm1.Button2Click&#40;Sender: TObject&#41;;
//show desktop icons
begin
  ShowWindow&#40;FindWindow&#40;nil, 'Program Manager'&#41;,SW_SHOW&#41;;
end;

]]></description>
		<wfw:commentRss>http://www.delphitips.net/2007/08/18/hide-show-all-icons-on-desktop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Animate application icon (on taskbar and apllication window)</title>
		<link>http://www.delphitips.net/2007/08/18/animate-application-icon-on-taskbar-and-apllication-window/</link>
		<comments>http://www.delphitips.net/2007/08/18/animate-application-icon-on-taskbar-and-apllication-window/#comments</comments>
		<pubDate>Sat, 18 Aug 2007 20:17:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Forms]]></category>
		<category><![CDATA[animate]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[icon]]></category>
		<category><![CDATA[taskbar]]></category>
		<category><![CDATA[window]]></category>

		<guid isPermaLink="false">http://www.delphitips.net/2007/08/18/animate-application-icon-on-taskbar-and-apllication-window/</guid>
		<description><![CDATA[This trick is pretty simple. You just need few icons (at least two) for animation and Timer component. The rest is easy&#8230;
Place two or more Image components on application main form. If you want to make more complex animation with plenty of icons, it&#8217;s better to use ImageList component. Then load images into Image components [...]]]></description>
		<wfw:commentRss>http://www.delphitips.net/2007/08/18/animate-application-icon-on-taskbar-and-apllication-window/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
