<?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>Frantic</title>
	<atom:link href="http://blog.frantic.im/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.frantic.im</link>
	<description>Мабуть, найкращий блог у світі</description>
	<lastBuildDate>Sat, 19 Jun 2010 22:59:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Funny BRCC32 Bug</title>
		<link>http://blog.frantic.im/brcc32-bug/</link>
		<comments>http://blog.frantic.im/brcc32-bug/#comments</comments>
		<pubDate>Thu, 14 Jan 2010 16:06:05 +0000</pubDate>
		<dc:creator>Frantic</dc:creator>
				<category><![CDATA[Delphi]]></category>
		<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://blog.frantic.im/?p=99</guid>
		<description><![CDATA[You all know what brcc32 is. For those who don&#8217;t I say that it is resource compiler, that makes RES files from your RC files. It is supplied with every Delphi version (AFAIK). Some weeks ago I found an interesting bug in this useful tool&#8230; In short &#8211; it does not &#8220;compile&#8221; your RC-file if [...]]]></description>
			<content:encoded><![CDATA[<p>You all know what brcc32 is. For those who don&#8217;t I say that it is resource compiler, that makes RES files from your RC files. It is supplied with every Delphi version (AFAIK). Some weeks ago I found an interesting bug in this useful tool&#8230;</p>
<p>In short &#8211; it does not &#8220;compile&#8221; your RC-file if it is placed in directory named starting with dot! I&#8217;m not sure you get the point because of my &#8220;broken english&#8221;, so I&#8217;ll show you an example: lets say you have directory D:\Source\.TEST\Project and my.rc file there. When you open command prompt, navigate to that folder and execute &#8220;brcc32 my.rc&#8221; you&#8217;ll get 32-byte (empty!) my.res file. No error messages!</p>
<p>I didn&#8217;t  found any QC reports/forum messages on this subject. Current version of brcc32 is 5.40 (Delphi7-2007) and it still has the bug. <strong>Be careful!</strong></p>
<p>And tiny screenshot (yeah, I&#8217;m using FAR manager <img src='http://blog.frantic.im/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> )</p>
<p><img title="brcc32-bug" src="http://blog.frantic.im/wp-content/uploads/2010/01/brcc32-bug-300x171.png" alt="" width="300" height="171" /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.frantic.im/brcc32-bug/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My new-looking Delphi Toolbar</title>
		<link>http://blog.frantic.im/delphi-toolbar/</link>
		<comments>http://blog.frantic.im/delphi-toolbar/#comments</comments>
		<pubDate>Wed, 18 Nov 2009 12:21:18 +0000</pubDate>
		<dc:creator>Frantic</dc:creator>
				<category><![CDATA[Delphi]]></category>

		<guid isPermaLink="false">http://blog.frantic.im/?p=72</guid>
		<description><![CDATA[Hi! Just got some time for my own little crazy ideas. Like this one: make ugly Delphi toolbar look a bit better. Instead of black/white images I wanted to see gray-scaled ones. So, this is how it looked before: &#8230;and this is how it looks now: Feel the difference? Interested in how to do this [...]]]></description>
			<content:encoded><![CDATA[<p>Hi!</p>
<p>Just got some time for my own little crazy ideas. Like <a href="http://stackoverflow.com/questions/1742759/delphi-ide-how-to-make-disabled-toolbar-buttons-grayscaled/1755543">this one</a>: make ugly Delphi toolbar look a bit better. Instead of black/white images I wanted to see gray-scaled ones. So, this is how it looked before:</p>
<p><img class="alignnone size-full wp-image-73" title="delphi-ide-before" src="http://blog.frantic.im/wp-content/uploads/2009/11/delphi-ide-before.PNG" alt="delphi-ide-before" width="500" height="170" /></p>
<p>&#8230;and this is how it looks now:</p>
<p><img class="alignnone size-full wp-image-74" title="delphi-ide-after" src="http://blog.frantic.im/wp-content/uploads/2009/11/delphi-ide-after.PNG" alt="delphi-ide-after" width="500" height="170" /></p>
<p>Feel the difference? <img src='http://blog.frantic.im/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Interested in how to do this &#8211; continue reading&#8230;</p>
<p><span id="more-72"></span></p>
<p>So, main trick &#8211; replace TCustomImageList.DoDraw with my own implementation and according to Enabled parameter draw normal or gray-scaled image. I created design-time package (you can download sources from <a href="http://code.google.com/p/delphi-nice-toolbar/">Google Code Project</a>) which patches vcl.bpl in memory after it loads.</p>
<p><strong>Note</strong> &#8211; this works only if gradient toolbars are turned on! <a href="http://jed-software.com/blog/?p=191" target="_blank">This</a> may be helpful for D2010 users.</p>
<p>That&#8217;s all I wanted to do. If you are interested in development of this idea or need some help &#8211; feel free to comment this topic.</p>
<p><strong>UPDATE #1</strong>:  Uploaded sources to Google Code: <a href="http://code.google.com/p/delphi-nice-toolbar/">http://code.google.com/p/delphi-nice-toolbar/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.frantic.im/delphi-toolbar/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The Delphi Survey</title>
		<link>http://blog.frantic.im/the-delphi-survey/</link>
		<comments>http://blog.frantic.im/the-delphi-survey/#comments</comments>
		<pubDate>Mon, 26 Oct 2009 22:32:21 +0000</pubDate>
		<dc:creator>Frantic</dc:creator>
				<category><![CDATA[Delphi]]></category>

		<guid isPermaLink="false">http://blog.frantic.im/?p=64</guid>
		<description><![CDATA[If you are advanced user of Delphi, you should probably know about Embarcadero&#8217;s survey.  It took me more then 40 minutes to complete, but I hope this would help them to make better product. There was a question,  something like &#8220;What would you like to see in further Delphi releases?&#8221;. And I want Generics-enabled VCL. [...]]]></description>
			<content:encoded><![CDATA[<p>If you are advanced user of Delphi, you should probably know about Embarcadero&#8217;s <a href="http://www.surveymonkey.com/s.aspx?sm=XrKr27_2bmLfybzGzZi_2brsBQ_3d_3d">survey</a>.  It took me more then 40 minutes to complete, but I hope this would help them to make better product.</p>
<p>There was a question,  something like &#8220;What would you like to see in further Delphi releases?&#8221;. And I want <strong>Generics-enabled VCL. </strong>Yeah, Generics are great, but when you are doomed to write TMyClass(ListView1.Items[0].Data).DoSomething you feel like in Stone Age.</p>
<p>I liked Delphi since the beginning of times. And it&#8217;s a big pleasure to read about it&#8217;s evolution. I hope it really <a href="http://www.isdelphidead.com/">isn&#8217;t dead</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.frantic.im/the-delphi-survey/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hello, world!</title>
		<link>http://blog.frantic.im/hello-world/</link>
		<comments>http://blog.frantic.im/hello-world/#comments</comments>
		<pubDate>Thu, 17 Sep 2009 01:27:29 +0000</pubDate>
		<dc:creator>Frantic</dc:creator>
				<category><![CDATA[Blog Related Stuff]]></category>

		<guid isPermaLink="false">http:/?p=1</guid>
		<description><![CDATA[Hi. My name is Alex, also known as Frantic. This is my first blog entry. If you want to know more about me or this blog &#8211; see &#8220;About&#8221; page.]]></description>
			<content:encoded><![CDATA[<p>Hi. My name is Alex, also known as Frantic. This is my first blog entry. If you want to know more about me or this blog &#8211; see &#8220;About&#8221; page.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.frantic.im/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

