<?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; color</title>
	<atom:link href="http://www.delphitips.net/tag/color/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>Change color of ListView items</title>
		<link>http://www.delphitips.net/2008/07/06/change-color-of-listview-cells/</link>
		<comments>http://www.delphitips.net/2008/07/06/change-color-of-listview-cells/#comments</comments>
		<pubDate>Sun, 06 Jul 2008 19:38:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Graphic]]></category>
		<category><![CDATA[VCL components]]></category>
		<category><![CDATA[color]]></category>
		<category><![CDATA[ListView]]></category>

		<guid isPermaLink="false">http://www.delphitips.net/?p=51</guid>
		<description><![CDATA[To change background color of ListView items, you need to write your own OnCustomDrawItem event handler.
The best result is when you set the ViewStyle to vsReport, but it&#8217;s completely functional even with vsList style. OnCustomDrawItem code is very simple:

unit Unit1;
&#160;
interface
&#160;
uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, ComCtrls;
&#160;
type
  TForm1 = [...]]]></description>
		<wfw:commentRss>http://www.delphitips.net/2008/07/06/change-color-of-listview-cells/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Listbox with colored lines</title>
		<link>http://www.delphitips.net/2008/06/30/listbox-with-colored-lines/</link>
		<comments>http://www.delphitips.net/2008/06/30/listbox-with-colored-lines/#comments</comments>
		<pubDate>Mon, 30 Jun 2008 22:36:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Forms]]></category>
		<category><![CDATA[Graphic]]></category>
		<category><![CDATA[VCL components]]></category>
		<category><![CDATA[color]]></category>
		<category><![CDATA[Listbox]]></category>

		<guid isPermaLink="false">http://www.delphitips.net/?p=50</guid>
		<description><![CDATA[Colored lines in listbox are more user-friendly and easy to read. Here is how to do it&#8230;
First of all, place ListBox component on a form and set Style property to lbOwnerDrawFixed. The rest is simple:

unit Unit1;
&#160;
interface
&#160;
uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, ComCtrls, StdCtrls;
&#160;
type
  TForm1 = class&#40;TForm&#41;
   [...]]]></description>
		<wfw:commentRss>http://www.delphitips.net/2008/06/30/listbox-with-colored-lines/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to change default hint color and timeouts</title>
		<link>http://www.delphitips.net/2007/02/25/how-to-change-default-hint-color-and-timeouts/</link>
		<comments>http://www.delphitips.net/2007/02/25/how-to-change-default-hint-color-and-timeouts/#comments</comments>
		<pubDate>Sun, 25 Feb 2007 11:29:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Forms]]></category>
		<category><![CDATA[color]]></category>
		<category><![CDATA[default]]></category>
		<category><![CDATA[hint]]></category>
		<category><![CDATA[timeout]]></category>

		<guid isPermaLink="false">http://www.delphitips.net/2007/02/25/how-to-change-default-hint-color-and-timeouts/</guid>
		<description><![CDATA[Normally, you can just turn hints on or off using property ShowHint on almost every visual component. But what if you want to change the default system color of hint &#8220;bubble&#8221;? And what if you want to change the default pause, before the hint shows? And hide pause? Everything is very simple.
All the secret is [...]]]></description>
		<wfw:commentRss>http://www.delphitips.net/2007/02/25/how-to-change-default-hint-color-and-timeouts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
