<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: Getting started with BITS</title>
	<atom:link href="http://blog.delphi-jedi.net/2008/04/26/getting-started-with-bits/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.delphi-jedi.net/2008/04/26/getting-started-with-bits/</link>
	<description>Joint Endeavor of Delphi Innovators of Windows Programming</description>
	<pubDate>Thu, 28 Aug 2008 07:57:41 +0000</pubDate>
	<generator>http://wordpress.org/?v=</generator>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: &#160; Bits Part 2 - Downloading files&#160;by&#160;JEDI Windows API</title>
		<link>http://blog.delphi-jedi.net/2008/04/26/getting-started-with-bits/#comment-306</link>
		<dc:creator>&#160; Bits Part 2 - Downloading files&#160;by&#160;JEDI Windows API</dc:creator>
		<pubDate>Wed, 30 Apr 2008 15:01:52 +0000</pubDate>
		<guid isPermaLink="false">http://blog.delphi-jedi.net/?p=167#comment-306</guid>
		<description>[...] hope you enjoyed the first part of the introduction to BITS. In this second part, we want to improve our job list (a little bit) [...]</description>
		<content:encoded><![CDATA[<p>[...] hope you enjoyed the first part of the introduction to BITS. In this second part, we want to improve our job list (a little bit) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stéphane Wierzbicki</title>
		<link>http://blog.delphi-jedi.net/2008/04/26/getting-started-with-bits/#comment-273</link>
		<dc:creator>Stéphane Wierzbicki</dc:creator>
		<pubDate>Sun, 27 Apr 2008 08:30:01 +0000</pubDate>
		<guid isPermaLink="false">http://blog.delphi-jedi.net/?p=167#comment-273</guid>
		<description>Thank you for sharing the article. I also hope the author does write a new article with :

- how to actually download something (lan shares / ftp / http)
- how to host the downloads (lan shares /  ftp / http)</description>
		<content:encoded><![CDATA[<p>Thank you for sharing the article. I also hope the author does write a new article with :</p>
<p>- how to actually download something (lan shares / ftp / http)<br />
- how to host the downloads (lan shares /  ftp / http)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chaosben</title>
		<link>http://blog.delphi-jedi.net/2008/04/26/getting-started-with-bits/#comment-272</link>
		<dc:creator>Chaosben</dc:creator>
		<pubDate>Sun, 27 Apr 2008 08:14:21 +0000</pubDate>
		<guid isPermaLink="false">http://blog.delphi-jedi.net/?p=167#comment-272</guid>
		<description>Thank you Sebastian for this improvement. It was new to me. 

For all others: Include "ComObj" into your uses clause in order to get this feature working. Doing it the way, Sebastian mentioned, above you can omit the two lines "CoInitializeEx" and "CoUninitialize".

I'll try to correct the listings.</description>
		<content:encoded><![CDATA[<p>Thank you Sebastian for this improvement. It was new to me. </p>
<p>For all others: Include &#8220;ComObj&#8221; into your uses clause in order to get this feature working. Doing it the way, Sebastian mentioned, above you can omit the two lines &#8220;CoInitializeEx&#8221; and &#8220;CoUninitialize&#8221;.</p>
<p>I&#8217;ll try to correct the listings.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sebastian</title>
		<link>http://blog.delphi-jedi.net/2008/04/26/getting-started-with-bits/#comment-226</link>
		<dc:creator>Sebastian</dc:creator>
		<pubDate>Sat, 26 Apr 2008 20:52:03 +0000</pubDate>
		<guid isPermaLink="false">http://blog.delphi-jedi.net/?p=167#comment-226</guid>
		<description>CoUnitialize should only be called when CoInitializeEx succeeded. Otherwise the call to CoUnitialize will shut down com too early. Use CoInitFlags in the initialization section, and Delphi will take care of it.

initialization
  CoInitFlags := COINIT_APARTMENTTHREADED;
end.</description>
		<content:encoded><![CDATA[<p>CoUnitialize should only be called when CoInitializeEx succeeded. Otherwise the call to CoUnitialize will shut down com too early. Use CoInitFlags in the initialization section, and Delphi will take care of it.</p>
<p>initialization<br />
  CoInitFlags := COINIT_APARTMENTTHREADED;<br />
end.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chaosben</title>
		<link>http://blog.delphi-jedi.net/2008/04/26/getting-started-with-bits/#comment-225</link>
		<dc:creator>Chaosben</dc:creator>
		<pubDate>Sat, 26 Apr 2008 20:20:14 +0000</pubDate>
		<guid isPermaLink="false">http://blog.delphi-jedi.net/?p=167#comment-225</guid>
		<description>Thanks for the reply Ajasja. 

I'm thinking about the continuation and you are right: starting own downloads is much more interesting. :)</description>
		<content:encoded><![CDATA[<p>Thanks for the reply Ajasja. </p>
<p>I&#8217;m thinking about the continuation and you are right: starting own downloads is much more interesting. <img src='http://blog.delphi-jedi.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Christian Wimmer</title>
		<link>http://blog.delphi-jedi.net/2008/04/26/getting-started-with-bits/#comment-223</link>
		<dc:creator>Christian Wimmer</dc:creator>
		<pubDate>Sat, 26 Apr 2008 19:57:56 +0000</pubDate>
		<guid isPermaLink="false">http://blog.delphi-jedi.net/?p=167#comment-223</guid>
		<description>Thank you. The code is fixed. I also added:

"Notice:
The code examples above do not use these new units, however. Thus you can just include JwaBits.pas (or JwaWindows)."

I hope the author does write a new article :D</description>
		<content:encoded><![CDATA[<p>Thank you. The code is fixed. I also added:</p>
<p>&#8220;Notice:<br />
The code examples above do not use these new units, however. Thus you can just include JwaBits.pas (or JwaWindows).&#8221;</p>
<p>I hope the author does write a new article <img src='http://blog.delphi-jedi.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ajasja</title>
		<link>http://blog.delphi-jedi.net/2008/04/26/getting-started-with-bits/#comment-220</link>
		<dc:creator>Ajasja</dc:creator>
		<pubDate>Sat, 26 Apr 2008 19:35:39 +0000</pubDate>
		<guid isPermaLink="false">http://blog.delphi-jedi.net/?p=167#comment-220</guid>
		<description>There's a small error:
an end of line is missing on line 14
//maybe the right is missing … try to get just our jobs  if not Succeeded(Res) then
should be
//maybe the right is missing … try to get just our jobs  
if not Succeeded(Res) then

Otherwise keep up the good work.
Maybe for part two: how to actually download something and how to host the downloads?:)

Best regards,
Ajasja</description>
		<content:encoded><![CDATA[<p>There&#8217;s a small error:<br />
an end of line is missing on line 14<br />
//maybe the right is missing … try to get just our jobs  if not Succeeded(Res) then<br />
should be<br />
//maybe the right is missing … try to get just our jobs<br />
if not Succeeded(Res) then</p>
<p>Otherwise keep up the good work.<br />
Maybe for part two: how to actually download something and how to host the downloads?:)</p>
<p>Best regards,<br />
Ajasja</p>
]]></content:encoded>
	</item>
</channel>
</rss>
