<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Sample program to create multiple threads</title><link>http://blogs.msdn.com/calvin_hsia/archive/2006/05/11/595562.aspx</link><description>I used the CreateThread call and the Heap functions to create a simple sample program that spawns a separate thread that displays a MessageBox Try running it and you will see a MessageBox. However, unlike a normal MessageBox in your application, this</description><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>re: Sample program to create multiple threads</title><link>http://blogs.msdn.com/calvin_hsia/archive/2006/05/11/595562.aspx#596078</link><pubDate>Fri, 12 May 2006 15:41:18 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:596078</guid><dc:creator>Alan Stevens</dc:creator><description>Calvin,&lt;br&gt;&lt;br&gt;This is very cool! &amp;nbsp;Please expand on this in Sedna, so we can launch multiple threads in VFP.&lt;br&gt;&lt;br&gt;++Alan</description></item><item><title>re: Sample program to create multiple threads</title><link>http://blogs.msdn.com/calvin_hsia/archive/2006/05/11/595562.aspx#597746</link><pubDate>Mon, 15 May 2006 08:10:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:597746</guid><dc:creator>Janusz Czudek</dc:creator><description>Great sample, but can we run a foxpro code on the new thread?&lt;br&gt;&lt;br&gt;We have to get a pointer (AdrCode) to foxpro procedure/function and pass it to CreateThread()...&lt;br&gt;&lt;br&gt;Is there a way to get such pointer?&lt;br&gt;</description></item><item><title>re: Sample program to create multiple threads</title><link>http://blogs.msdn.com/calvin_hsia/archive/2006/05/11/595562.aspx#597968</link><pubDate>Mon, 15 May 2006 16:34:19 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:597968</guid><dc:creator>Franklin Garón</dc:creator><description>Good example, if you put this function as part native of VFP (Sedna), this was great feature.</description></item><item><title>re: Sample program to create multiple threads</title><link>http://blogs.msdn.com/calvin_hsia/archive/2006/05/11/595562.aspx#598078</link><pubDate>Mon, 15 May 2006 18:54:19 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:598078</guid><dc:creator>Calvin_Hsia</dc:creator><description>Alan, Jausz, Franklin: If you could run VFP code on multiple threads, what scenarios will this enable for you? How will you use it?&lt;br&gt;&lt;br&gt;thanks&lt;br&gt;</description></item><item><title>re: Sample program to create multiple threads</title><link>http://blogs.msdn.com/calvin_hsia/archive/2006/05/11/595562.aspx#598422</link><pubDate>Tue, 16 May 2006 02:38:39 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:598422</guid><dc:creator>Rick Strahl</dc:creator><description>Calvin,&lt;br&gt;&lt;br&gt;I also posted a few .NET examples that do something similar and I actually think that using .NET in that situation is easier. The other advantage of using .NET in thi scenario is that you could call a Visual FoxPro COM component from the multithreaded code - in fact I showed how to do this in a recent article with a generic COM callable .NET component that can execute another COM component which can be VFP created.&lt;br&gt;&lt;br&gt;&lt;a rel="nofollow" target="_new" href="http://www.west-wind.com/presentations/dotnetfromVfp/DotNetFromVfp_MultiThreading.asp"&gt;http://www.west-wind.com/presentations/dotnetfromVfp/DotNetFromVfp_MultiThreading.asp&lt;/a&gt;&lt;br&gt;&lt;br&gt;Multi-threading can come in very handy in a number of situations. Send and forget operation of a lengthy task. In Web applications Aysnc tasks can be used to fire of a long running task and provide feedback so the Web client can see progress information. Offloading blocking user interfaces (while downloading a file for example) is another where I use multi-threading often...&lt;br&gt;&lt;br&gt;It would be very cool if there was a way for VFP to create a new thread and then call back into FoxPro code. In fact I seem to remember I played with that a few years ago with the FoxPro library kit, but it wasn't very happy when the call returned on a new thread &amp;lt;g&amp;gt;.&lt;br&gt;&lt;br&gt;</description></item><item><title>re: Sample program to create multiple threads</title><link>http://blogs.msdn.com/calvin_hsia/archive/2006/05/11/595562.aspx#598425</link><pubDate>Tue, 16 May 2006 02:40:46 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:598425</guid><dc:creator>Rick Strahl</dc:creator><description>BTW, what's the reason for calling LoadLibrary on User32? Isn't that available on the standard Win32API stack already?&lt;br&gt;</description></item><item><title>re: Sample program to create multiple threads</title><link>http://blogs.msdn.com/calvin_hsia/archive/2006/05/11/595562.aspx#598493</link><pubDate>Tue, 16 May 2006 04:00:50 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:598493</guid><dc:creator>Calvin_Hsia</dc:creator><description>In this sample, LoadLibrary for User32.dll is needed because the return value is passed to GetProcAddress. You’re right that User32.dll is already loaded, so LoadLibrary doesn’t have to *load* the DLL: it just returns the hModule (which is the module address).&lt;br&gt;&lt;br&gt;See next blog post for sample that calls VFP code in a thread proc.</description></item><item><title>re: Sample program to create multiple threads</title><link>http://blogs.msdn.com/calvin_hsia/archive/2006/05/11/595562.aspx#598756</link><pubDate>Tue, 16 May 2006 13:02:20 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:598756</guid><dc:creator>Dimitrios Papadopoulos</dc:creator><description>Calvin, &lt;br&gt;&lt;br&gt;it would be great if you could run fox code in different threads. Actually my scenarios are more or less as Rick's. Here are some scenarios which I would use this option for :&lt;br&gt;a. I am running a remote - or local - sql query, or queries against several remote databases which at the end the different cursor resultsets must be localy joined. The queries take long because of complexity but the result sets are just a few records ..., asynchronous sqlexec does not help in this case.&lt;br&gt;b. I have a service that downloads - in a loop - and parses web pages from several different slow web sites. In order to proceed to the next download the program has to wait the previous ...&lt;br&gt;c. There are issues with timers also that can be improoved by using multithreading. To be able to have different timers in an application that run code at the same time...</description></item><item><title>re: Sample program to create multiple threads</title><link>http://blogs.msdn.com/calvin_hsia/archive/2006/05/11/595562.aspx#598989</link><pubDate>Tue, 16 May 2006 18:47:59 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:598989</guid><dc:creator>Jochen Kirstaetter</dc:creator><description>Thanks for this article, Calvin.&lt;br&gt;Threading is very powerful and as Rick already stated in his comment as well as in his blog articles. Threading in VFP would be very productive in case of long-term processes. We have several customer projects with huge data processing - monthly/quarterly/yearly billing runs - with about 1.5GB data. So, if the customer starts this process the machine is blocked for approx. 2 hours (depending on the number of clients being processed). So, if we could fork those runs on a separate thread, it would be a lot easier for us *not to block* the application and just show an indicator on a dialog or status bar.&lt;br&gt;&lt;br&gt;Same for background downloads and other stuff like this.&lt;br&gt;&lt;br&gt;So, in my opinion Threading would be a boost for VFP! Today I'm using a .NET based launcher for COM servers like Rick. But a native solution would be more interesting.&lt;br&gt;&lt;br&gt;&lt;br&gt;Kind regards, JoKi</description></item><item><title>Create multiple threads from within your application</title><link>http://blogs.msdn.com/calvin_hsia/archive/2006/05/11/595562.aspx#599109</link><pubDate>Tue, 16 May 2006 21:01:25 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:599109</guid><dc:creator>Calvin Hsia's WebLog</dc:creator><description>When I posted this Sample program to create multiple threads, I knew the inevitable follow-up question...</description></item><item><title>re: Sample program to create multiple threads</title><link>http://blogs.msdn.com/calvin_hsia/archive/2006/05/11/595562.aspx#599516</link><pubDate>Wed, 17 May 2006 05:50:36 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:599516</guid><dc:creator>Franklin Garzón</dc:creator><description>If, the colleagues have exposed the principal points for which to implement the MH in VFP as a native part, another case is that nowadays on having executed a process of connection to a WS the machine freezes waiting for the process of response.</description></item><item><title>re: Sample program to create multiple threads</title><link>http://blogs.msdn.com/calvin_hsia/archive/2006/05/11/595562.aspx#600079</link><pubDate>Wed, 17 May 2006 20:06:54 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:600079</guid><dc:creator>Craig Larson</dc:creator><description>I'm wondering if the majority of users just need a box message to pop up informing them that some process is happening and will be available shortly, would this not be a simpler solution?&lt;br&gt;&lt;br&gt;** C++ code below **&lt;br&gt;&lt;br&gt;#include &amp;quot;pro_ext.h&amp;quot;&lt;br&gt;#include &amp;lt;string.h&amp;gt;&lt;br&gt;&lt;br&gt;char FAR mmsg[254];&lt;br&gt;&lt;br&gt;DWORD WINAPI FAR Message(LPVOID aVoidPointer) &lt;br&gt;{&lt;br&gt;	MessageBox(NULL, mmsg, &amp;quot;Separate Thread Support&amp;quot;,NULL);&lt;br&gt;	return (0);&lt;br&gt;}&lt;br&gt;&lt;br&gt;void FAR mbox(ParamBlk FAR *parm) // the function definition&lt;br&gt;{&lt;br&gt;	DWORD ThreadId;&lt;br&gt;&lt;br&gt;	char FAR *msg;&lt;br&gt;&lt;br&gt;	msg = ((char FAR *) _HandToPtr(parm-&amp;gt;p[0].val.ev_handle));&lt;br&gt;&lt;br&gt;	strncpy(mmsg, msg, strlen(msg));&lt;br&gt;&lt;br&gt;	CreateThread(NULL,0, Message, 0, 0, &amp;amp;ThreadId); &amp;nbsp;//show messagebox in separate thread&lt;br&gt;	_RetLogical(1); //return .T.&lt;br&gt;}&lt;br&gt;&lt;br&gt;FoxInfo myFoxInfo[] ={&lt;br&gt;		{&amp;quot;MBOX&amp;quot;, (FPFI) mbox, 1, &amp;quot;C&amp;quot;},&lt;br&gt;};&lt;br&gt;&lt;br&gt;extern &amp;quot;C&amp;quot; FoxTable _FoxTable = {&lt;br&gt;	(FoxTable FAR *)0, sizeof(myFoxInfo)/ sizeof(FoxInfo), myFoxInfo&lt;br&gt;};&lt;br&gt;&lt;br&gt;&lt;br&gt;** Fox Code Below **&lt;br&gt;SET LIBRARY TO meep&lt;br&gt;_result = .F.&lt;br&gt;&lt;br&gt;_result = mbox(&amp;quot;Messagebox in separate thread&amp;quot;)&lt;br&gt;&lt;br&gt;FOR _cnt = 1 TO 5&lt;br&gt;	WAIT WINDOW &amp;quot;Count = &amp;quot; + STR(_cnt) TIMEOUT 1&lt;br&gt;ENDFOR&lt;br&gt;&lt;br&gt;IF (_result)&lt;br&gt;	WAIT WINDOW &amp;quot;MessageBox Was Displayed&amp;quot; nowait&lt;br&gt;ENDIF&lt;br&gt;</description></item><item><title>re: Sample program to create multiple threads</title><link>http://blogs.msdn.com/calvin_hsia/archive/2006/05/11/595562.aspx#601403</link><pubDate>Fri, 19 May 2006 02:44:05 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:601403</guid><dc:creator>Olaf Doschke</dc:creator><description>This is nice in showing, that MT is even possible with some API calls. But the last time I poked some assembler into memory was with the commodore vc 20, not even c64, even with that oldie one could use an assembler :^).&lt;br&gt;&lt;br&gt;How would we use MT within VFP?&lt;br&gt;&lt;br&gt;1. using API calls with a callback function like MoveFileWithProgress().&lt;br&gt;&lt;br&gt;2. nonblocking wait for external processes: Multiple file download, mail sending, COM port polling, whatever. &lt;br&gt;Especially in case of the failure of an external process, with a separate thread a timeout is much easier, and that thread may die without affecting the main thread.&lt;br&gt;&lt;br&gt;3. putting lengthy porcesses in the background, like backup of large amounts of files, lenghty complex queries (datamining).&lt;br&gt;&lt;br&gt;4. seperating tasks into smaller portions being able to run parallel in principle.&lt;br&gt;For example with shared memory access, one thread may fill a buffer by reading in a file, one thread may process it (eg compress blocks), the next thread writes the processed data back to disk. &lt;br&gt;All this may be done step by step in a single thread, but seperating these three tasks could make use of multiple cpu cores and balance cpu needs.&lt;br&gt;&lt;br&gt;5.,6.,7.,8.,9.,... what I even did not think about now.&lt;br&gt;&lt;br&gt;Bye, Olaf.</description></item><item><title>re: Sample program to create multiple threads</title><link>http://blogs.msdn.com/calvin_hsia/archive/2006/05/11/595562.aspx#601723</link><pubDate>Fri, 19 May 2006 12:40:56 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:601723</guid><dc:creator>Martin Bauer</dc:creator><description>I need threading in VFP !&lt;br&gt;&lt;br&gt;</description></item><item><title>re: Sample program to create multiple threads</title><link>http://blogs.msdn.com/calvin_hsia/archive/2006/05/11/595562.aspx#606683</link><pubDate>Thu, 25 May 2006 05:13:40 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:606683</guid><dc:creator>DOUGBAKER</dc:creator><description>Well, I recently upgraded my workstation to a fast processor with hyper threading. When I run some processes, one virtual processor is maxed, the other one is not doing much. If I could create multiple threads, my hunch is the processor would use hyper threading to run both threads. If I can design the threads to not be dependent on each other, &amp;nbsp;would &amp;nbsp;I get faster throughput?</description></item><item><title>re: Sample program to create multiple threads</title><link>http://blogs.msdn.com/calvin_hsia/archive/2006/05/11/595562.aspx#607360</link><pubDate>Thu, 25 May 2006 22:40:46 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:607360</guid><dc:creator>Calvin_Hsia</dc:creator><description>DougBaker: yes: with hyperthreading or with multiprocessors, throughput can be much improved when there is little interthread resource contention</description></item><item><title>re: Sample program to create multiple threads</title><link>http://blogs.msdn.com/calvin_hsia/archive/2006/05/11/595562.aspx#630602</link><pubDate>Wed, 14 Jun 2006 10:44:13 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:630602</guid><dc:creator>meimeib</dc:creator><description>hi,Calvin_Hsia ^_^&lt;br&gt;can you demo this code with vfp's form instead of messageboxA?&lt;br&gt;thank you&lt;br&gt;meimeib@126.com</description></item><item><title>re: Sample program to create multiple threads</title><link>http://blogs.msdn.com/calvin_hsia/archive/2006/05/11/595562.aspx#1100579</link><pubDate>Sat, 18 Nov 2006 23:04:30 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1100579</guid><dc:creator>jimsun</dc:creator><description>&lt;p&gt;Calvin, &lt;/p&gt;
&lt;p&gt;can you tell me how to run a EXE in a thread!&lt;/p&gt;
</description></item><item><title>re: Sample of easy programs of foxpro with problems</title><link>http://blogs.msdn.com/calvin_hsia/archive/2006/05/11/595562.aspx#1126722</link><pubDate>Thu, 23 Nov 2006 10:22:23 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1126722</guid><dc:creator>noel</dc:creator><description>&lt;p&gt;can you give me an easy sample of database programs with problems and foxpro with problems i ned it for my project.......... just send to this e-mail guitarsound_music@yahoo.com thanks im hoping for your rply as soon as posible thank you.....&lt;/p&gt;
</description></item><item><title>re: Sample program to create multiple threads</title><link>http://blogs.msdn.com/calvin_hsia/archive/2006/05/11/595562.aspx#1683413</link><pubDate>Thu, 15 Feb 2007 17:14:48 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1683413</guid><dc:creator>yothinin</dc:creator><description>&lt;p&gt;Hi, Calvin&lt;/p&gt;
&lt;p&gt;I need to run VFP's form look like !!meimeib!!. Can you tell me more.&lt;/p&gt;
&lt;p&gt;Thanks advance&lt;/p&gt;
&lt;p&gt;yothinin@hotmail.com&lt;/p&gt;
</description></item><item><title>How to interrupt your code</title><link>http://blogs.msdn.com/calvin_hsia/archive/2006/05/11/595562.aspx#8510682</link><pubDate>Fri, 16 May 2008 05:43:19 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8510682</guid><dc:creator>Calvin Hsia's WebLog</dc:creator><description>&lt;p&gt;I received a question: Simply, is there a way of interrupting a vfp sql query once it has started short&lt;/p&gt;
</description></item><item><title>re: Sample program to create multiple threads</title><link>http://blogs.msdn.com/calvin_hsia/archive/2006/05/11/595562.aspx#8518154</link><pubDate>Sun, 18 May 2008 15:35:16 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8518154</guid><dc:creator>raja</dc:creator><description>&lt;p&gt;Need Salesmanwise Report program foxpro 2.6 dos mode, please send sample program my email address.&lt;/p&gt;
</description></item><item><title>Spammy mommy</title><link>http://blogs.msdn.com/calvin_hsia/archive/2006/05/11/595562.aspx#9032317</link><pubDate>Mon, 03 Nov 2008 12:44:16 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9032317</guid><dc:creator>!saubbesia!</dc:creator><description>&lt;p&gt;Do you like &amp;nbsp; ?&lt;/p&gt;
&lt;p&gt;May be you prefer &amp;nbsp;?&lt;/p&gt;
&lt;p&gt;Specializes in quality &amp;nbsp;?&lt;/p&gt;
&lt;p&gt;Don't beat me!&lt;/p&gt;
</description></item><item><title>Windows SERVER 2008 - Page 2 | hilpers</title><link>http://blogs.msdn.com/calvin_hsia/archive/2006/05/11/595562.aspx#9337776</link><pubDate>Sun, 18 Jan 2009 15:05:20 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9337776</guid><dc:creator>Windows SERVER 2008 - Page 2 | hilpers</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://www.hilpers.fr/496799-windows-server-2008-a/2"&gt;http://www.hilpers.fr/496799-windows-server-2008-a/2&lt;/a&gt;&lt;/p&gt;
</description></item><item><title>COM-Server | hilpers</title><link>http://blogs.msdn.com/calvin_hsia/archive/2006/05/11/595562.aspx#9347263</link><pubDate>Tue, 20 Jan 2009 17:18:16 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9347263</guid><dc:creator>COM-Server | hilpers</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://www.hilpers.com/1068240-com-server"&gt;http://www.hilpers.com/1068240-com-server&lt;/a&gt;&lt;/p&gt;
</description></item><item><title>ETL Subsystem 31: Paralleling and Pipelining &amp;laquo; Tod means Fox</title><link>http://blogs.msdn.com/calvin_hsia/archive/2006/05/11/595562.aspx#9625510</link><pubDate>Mon, 18 May 2009 19:39:54 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9625510</guid><dc:creator>ETL Subsystem 31: Paralleling and Pipelining &amp;laquo; Tod means Fox</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://blog.todmeansfox.com/2009/05/18/etl-subsystem-31-paralleling-and-pipelining/"&gt;http://blog.todmeansfox.com/2009/05/18/etl-subsystem-31-paralleling-and-pipelining/&lt;/a&gt;&lt;/p&gt;
</description></item><item><title>re: Sample program to create multiple threads</title><link>http://blogs.msdn.com/calvin_hsia/archive/2006/05/11/595562.aspx#9728570</link><pubDate>Fri, 12 Jun 2009 04:50:40 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9728570</guid><dc:creator>出会い</dc:creator><description>&lt;p&gt;ヒマだょ…誰かかまってぉ…会って遊んだりできる人募集！とりあえずメール下さい☆　uau-love@docomo.ne.jp&lt;/p&gt;
</description></item><item><title>re: Sample program to create multiple threads</title><link>http://blogs.msdn.com/calvin_hsia/archive/2006/05/11/595562.aspx#9741047</link><pubDate>Sat, 13 Jun 2009 04:37:31 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9741047</guid><dc:creator>小向美奈子</dc:creator><description>&lt;p&gt;話題の小向美奈子ストリップを隠し撮り！入念なボディチェックをすり抜けて超小型カメラで撮影した神動画がアップ中！期間限定配信の衝撃的映像を見逃すな&lt;/p&gt;
</description></item><item><title>小向美奈子盗撮</title><link>http://blogs.msdn.com/calvin_hsia/archive/2006/05/11/595562.aspx#9741174</link><pubDate>Sat, 13 Jun 2009 04:57:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9741174</guid><dc:creator>小向美奈子 </dc:creator><description>&lt;p&gt;話題の小向美奈子ストリップを隠し撮り！入念なボディチェックをすり抜けて超小型カメラで撮影した神動画がアップ中！期間限定配信の衝撃的映像を見逃すな&lt;/p&gt;
</description></item><item><title>re: Sample program to create multiple threads</title><link>http://blogs.msdn.com/calvin_hsia/archive/2006/05/11/595562.aspx#9741239</link><pubDate>Sat, 13 Jun 2009 05:06:43 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9741239</guid><dc:creator>小向美奈子</dc:creator><description>&lt;p&gt;話題の小向美奈子ストリップを隠し撮り！入念なボディチェックをすり抜けて超小型カメラで撮影した神動画がアップ中！期間限定配信の衝撃的映像を見逃すな&lt;/p&gt;
</description></item><item><title>一般人とは違う価値観</title><link>http://blogs.msdn.com/calvin_hsia/archive/2006/05/11/595562.aspx#9742691</link><pubDate>Sat, 13 Jun 2009 10:59:57 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9742691</guid><dc:creator>セフレ</dc:creator><description>&lt;p&gt;女性のオナニーをお手伝いして、謝礼をもらうお仕事を始めませんか？&lt;/p&gt;
</description></item><item><title>re: Sample program to create multiple threads</title><link>http://blogs.msdn.com/calvin_hsia/archive/2006/05/11/595562.aspx#9746967</link><pubDate>Sun, 14 Jun 2009 04:49:09 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9746967</guid><dc:creator>家出掲示板</dc:creator><description>&lt;p&gt;カワイイ子ほど家出してみたくなるようです。家出掲示板でそのような子と出会ってみませんか？彼女たちは夕食をおごってあげるだけでお礼にHなご奉仕をしてくれちゃったりします&lt;/p&gt;
</description></item><item><title>re: Sample program to create multiple threads</title><link>http://blogs.msdn.com/calvin_hsia/archive/2006/05/11/595562.aspx#9751803</link><pubDate>Mon, 15 Jun 2009 05:00:23 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9751803</guid><dc:creator>右脳左脳</dc:creator><description>&lt;p&gt;あなたは右脳派？もしくは左脳派？隠されたあなたの性格分析が3分で出来ちゃう診断サイトの決定版！合コンや話のネタにも使える右脳左脳チェッカーを試してみよう&lt;/p&gt;
</description></item><item><title>re: Sample program to create multiple threads</title><link>http://blogs.msdn.com/calvin_hsia/archive/2006/05/11/595562.aspx#9757416</link><pubDate>Tue, 16 Jun 2009 04:16:48 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9757416</guid><dc:creator>セレブラブ</dc:creator><description>&lt;p&gt;セレブラブでは性欲のある男性を募集しています。セフレパートナーを探している20代・30代の女性たちが多数登録されています。セレブと遊びたい、Hがしたいという方は無料登録からどうぞ&lt;/p&gt;
</description></item><item><title>re: Sample program to create multiple threads</title><link>http://blogs.msdn.com/calvin_hsia/archive/2006/05/11/595562.aspx#9763615</link><pubDate>Wed, 17 Jun 2009 04:19:14 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9763615</guid><dc:creator>逆援助</dc:creator><description>&lt;p&gt;セレブ達は一般の人達とは接する機会もなく、その出会う唯一の場所が「逆援助倶楽部」です。 男性はお金、女性はSEXを要求する場合が多いようです。これは女性に圧倒的な財力があるから成り立つことの出来る関係ではないでしょうか？&lt;/p&gt;
</description></item><item><title>re: Sample program to create multiple threads</title><link>http://blogs.msdn.com/calvin_hsia/archive/2006/05/11/595562.aspx#9771339</link><pubDate>Thu, 18 Jun 2009 04:12:48 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9771339</guid><dc:creator>救援部</dc:creator><description>&lt;p&gt;貴方のオ○ニーライフのお手伝い、救援部でHな見せたがり女性からエロ写メ、ムービーをゲットしよう！近所の女の子なら実際に合ってHな事ができちゃうかも！？夏に向けて開放的になっている女の子と遊んじゃおう&lt;/p&gt;
</description></item><item><title>re: Sample program to create multiple threads</title><link>http://blogs.msdn.com/calvin_hsia/archive/2006/05/11/595562.aspx#9778301</link><pubDate>Fri, 19 Jun 2009 04:50:55 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9778301</guid><dc:creator>出会い</dc:creator><description>&lt;p&gt;まったぁ〜りしたデートがしたいです☆結構いつでもヒマしてます♪　m-g-j@docomo.ne.jp　年齢と名前くらいは入れてくれるとメール返信しやすいかも…&lt;/p&gt;
</description></item><item><title>Фильмы 2009</title><link>http://blogs.msdn.com/calvin_hsia/archive/2006/05/11/595562.aspx#9810461</link><pubDate>Wed, 01 Jul 2009 10:43:39 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9810461</guid><dc:creator>filmmy</dc:creator><description>&lt;p&gt;Нашел сайт в сети &amp;nbsp;&lt;a rel="nofollow" target="_new" href="http://filmy.my1.ru/"&gt;http://filmy.my1.ru/&lt;/a&gt;, где Вы сможете найти множество интересных материалов. Здесь можна посмотреть кино разных жанров в режиме онлайн, а можна и скачать фильмы, причем совершенно бесплатно. &lt;/p&gt;
&lt;p&gt;Для любителей легкой эротики есть два раздела: эротика онлайн и скачать эротику, &lt;/p&gt;
&lt;p&gt;&amp;lt;a href=&amp;quot;&lt;a rel="nofollow" target="_new" href="http://filmy.my1.ru/"&gt;http://filmy.my1.ru/&lt;/a&gt;&amp;quot;&amp;gt;Фильмы онлайн, скачать фильмы&amp;lt;/a&amp;gt;.&lt;/p&gt;
</description></item><item><title>как прекрасен этот мир. пасматри !!!</title><link>http://blogs.msdn.com/calvin_hsia/archive/2006/05/11/595562.aspx#9831570</link><pubDate>Mon, 13 Jul 2009 15:47:50 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9831570</guid><dc:creator>Iterbintuit</dc:creator><description>&lt;p&gt;Текст (слова) песни&lt;/p&gt;
&lt;p&gt;Ты проснешься на рассвете мы с тобою вместе встретим день рождения зари&lt;/p&gt;
&lt;p&gt;Как прекрасен этот мир посмотри как прекрасен этот мир&lt;/p&gt;
&lt;p&gt;Как прекрасен этот мир посмотри как прекрасен этот мир&lt;/p&gt;
&lt;p&gt;Ты не можешь не заметить соловьи живут на свете и простые сизари&lt;/p&gt;
&lt;p&gt;Как прекрасен этот мир посмотри как прекрасен этот мир&lt;/p&gt;
&lt;p&gt;Как прекрасен этот мир посмотри как прекрасен этот мир&lt;/p&gt;
&lt;p&gt;Ты взглянула и минуты остановлены как будто как росинки их бери&lt;/p&gt;
&lt;p&gt;Как прекрасен этот мир посмотри как прекрасен этот мир&lt;/p&gt;
&lt;p&gt;Как прекрасен этот мир посмотри как прекрасен этот мир&lt;/p&gt;
&lt;p&gt;Как прекрасен этот мир посмотри как прекрасен этот мир&lt;/p&gt;
</description></item><item><title>Компьютерная помощь</title><link>http://blogs.msdn.com/calvin_hsia/archive/2006/05/11/595562.aspx#9878038</link><pubDate>Fri, 21 Aug 2009 06:50:11 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9878038</guid><dc:creator>logginnoff</dc:creator><description>&lt;p&gt;Привет&lt;/p&gt;
&lt;p&gt; Помогите плиз, комп не включается, синий экран и всё :(&lt;/p&gt;
&lt;p&gt;Компьютерная помощь приезжали, винды переустановили - непомогает&lt;/p&gt;
&lt;p&gt; сейчас снова синий экран :((&lt;/p&gt;
&lt;p&gt;Комп не трогал, все так и было... &lt;/p&gt;
&lt;p&gt; Или хотя бы куда обратится в Москве? Чтобы недорого..&lt;/p&gt;
&lt;p&gt;Спасибо заранее!&lt;/p&gt;
</description></item></channel></rss>