<?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; Graphic</title>
	<atom:link href="http://www.delphitips.net/graphic/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>Own cool text cursor in Editbox</title>
		<link>http://www.delphitips.net/2009/02/17/own-cool-text-cursor-in-editbox/</link>
		<comments>http://www.delphitips.net/2009/02/17/own-cool-text-cursor-in-editbox/#comments</comments>
		<pubDate>Mon, 16 Feb 2009 23:08:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Graphic]]></category>
		<category><![CDATA[VCL components]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[cursor]]></category>
		<category><![CDATA[text]]></category>

		<guid isPermaLink="false">http://www.delphitips.net/?p=65</guid>
		<description><![CDATA[Standard text cursor is boring. What about replacing default vertical line with some cool shape?

unit Unit1;
&#160;
interface
&#160;
uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, StdCtrls;
&#160;
type
  TForm1 = class&#40;TForm&#41;
    Edit1: TEdit;
    procedure FormCreate&#40;Sender: TObject&#41;;
    procedure FormDestroy&#40;Sender: TObject&#41;;
  private
    { [...]]]></description>
		<wfw:commentRss>http://www.delphitips.net/2009/02/17/own-cool-text-cursor-in-editbox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<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>Progressbar inside Button? No problem</title>
		<link>http://www.delphitips.net/2008/04/16/progressbar-inside-button-no-problem/</link>
		<comments>http://www.delphitips.net/2008/04/16/progressbar-inside-button-no-problem/#comments</comments>
		<pubDate>Wed, 16 Apr 2008 20:19:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Forms]]></category>
		<category><![CDATA[Graphic]]></category>
		<category><![CDATA[VCL components]]></category>
		<category><![CDATA[button]]></category>
		<category><![CDATA[progressbar]]></category>

		<guid isPermaLink="false">http://www.delphitips.net/?p=43</guid>
		<description><![CDATA[It&#8217;s quite cool efect, but this is also effective way to save some space in your application GUI. Let&#8217;s place progressbar of some time-consuming function right into the button, which started this function.
Place Button and Progressbar components on a form and set Visible property of Progressbar to False. Now, use the following code to do [...]]]></description>
		<wfw:commentRss>http://www.delphitips.net/2008/04/16/progressbar-inside-button-no-problem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Detect system font size</title>
		<link>http://www.delphitips.net/2008/02/17/detect-system-font-size/</link>
		<comments>http://www.delphitips.net/2008/02/17/detect-system-font-size/#comments</comments>
		<pubDate>Sun, 17 Feb 2008 20:31:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Forms]]></category>
		<category><![CDATA[Graphic]]></category>
		<category><![CDATA[System]]></category>
		<category><![CDATA[detect]]></category>
		<category><![CDATA[font]]></category>
		<category><![CDATA[size]]></category>

		<guid isPermaLink="false">http://www.delphitips.net/2008/02/17/detect-system-font-size/</guid>
		<description><![CDATA[The standard system font size in Windows XP is 96 dpi. You can also use 120 dpi, if your prefer bigger fonts or you can set this font size to your own value. However, the most applications today are tested only with standard font size and if you change it, even professional applications can have [...]]]></description>
		<wfw:commentRss>http://www.delphitips.net/2008/02/17/detect-system-font-size/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Drawing text on desktop</title>
		<link>http://www.delphitips.net/2008/01/16/drawing-text-on-desktop/</link>
		<comments>http://www.delphitips.net/2008/01/16/drawing-text-on-desktop/#comments</comments>
		<pubDate>Wed, 16 Jan 2008 22:03:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Graphic]]></category>
		<category><![CDATA[System]]></category>
		<category><![CDATA[desktop]]></category>
		<category><![CDATA[draw]]></category>
		<category><![CDATA[text]]></category>

		<guid isPermaLink="false">http://www.delphitips.net/2008/01/16/drawing-text-on-desktop/</guid>
		<description><![CDATA[Using this simple trick, you can write any text right on Windows desktop. You can choose text color, transparency, position&#8230;

unit Unit1;
&#160;
interface
&#160;
uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, StdCtrls;
&#160;
type
  TForm1 = class&#40;TForm&#41;
    Button1: TButton;
    procedure Button1Click&#40;Sender: TObject&#41;;
  private
    { Private [...]]]></description>
		<wfw:commentRss>http://www.delphitips.net/2008/01/16/drawing-text-on-desktop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
