<?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>VisualCpp.org</title>
	<atom:link href="http://www.visualcpp.org/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.visualcpp.org</link>
	<description>Collection of Visual C++  Stuffs</description>
	<lastBuildDate>Mon, 30 Aug 2010 07:06:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>How to declare pointer to member function ?</title>
		<link>http://www.visualcpp.org/?p=372</link>
		<comments>http://www.visualcpp.org/?p=372#comments</comments>
		<pubDate>Mon, 30 Aug 2010 07:06:29 +0000</pubDate>
		<dc:creator>VisualCPP</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.visualcpp.org/?p=372</guid>
		<description><![CDATA[Today while browsing at CP MFC forums, I find these two reply intresting for problem mentioned in title. Aescleal replied:- Member function pointers are really handy when you want to call the same member function on every element of a collection. It's either that or write a shim functor to do the call for you. [...]]]></description>
		<wfw:commentRss>http://www.visualcpp.org/?feed=rss2&amp;p=372</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>String Manipulation!</title>
		<link>http://www.visualcpp.org/?p=368</link>
		<comments>http://www.visualcpp.org/?p=368#comments</comments>
		<pubDate>Tue, 10 Aug 2010 11:28:55 +0000</pubDate>
		<dc:creator>VisualCPP</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[STL]]></category>

		<guid isPermaLink="false">http://www.visualcpp.org/?p=368</guid>
		<description><![CDATA[Today I found a interesting post at CP, which states "I've given a string like this:"S R Tendulkar". I've to get the third part in the string ie "Tendulkar" and randomly rearrange or replace the characters between 'd' to 'r'. ie I've to display "SR Tendulkar" as "S R Tendalkur" or as "S R Tendelker". My [...]]]></description>
		<wfw:commentRss>http://www.visualcpp.org/?feed=rss2&amp;p=368</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IPC: Using Window Message</title>
		<link>http://www.visualcpp.org/?p=359</link>
		<comments>http://www.visualcpp.org/?p=359#comments</comments>
		<pubDate>Thu, 22 Jul 2010 11:19:05 +0000</pubDate>
		<dc:creator>VisualCPP</dc:creator>
				<category><![CDATA[IPC]]></category>
		<category><![CDATA[MFC]]></category>
		<category><![CDATA[Win32]]></category>

		<guid isPermaLink="false">http://www.visualcpp.org/?p=359</guid>
		<description><![CDATA[There are numerous ways to communicate between two applications, in this post will tell you the way to communicate between two different app using raw window message. This is most simpler and primitive way of IPC communication. Step of achieving IPC using Window Message:-  Create Dialog based application, implement way to set caption of dialog [...]]]></description>
		<wfw:commentRss>http://www.visualcpp.org/?feed=rss2&amp;p=359</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using IComparer interface in Managed C++!</title>
		<link>http://www.visualcpp.org/?p=322</link>
		<comments>http://www.visualcpp.org/?p=322#comments</comments>
		<pubDate>Mon, 19 Jul 2010 06:31:29 +0000</pubDate>
		<dc:creator>VisualCPP</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Managed VC]]></category>

		<guid isPermaLink="false">http://www.visualcpp.org/?p=322</guid>
		<description><![CDATA[IComparer is an useful interface provided to programmer to sort collection according to programmer wish. IComparer has one virtual function which need to be overload by programmer to sort. Class T&#60;&#62; virtual int Compare(T x, T y) Here is mine custom implementation to sort array/list in desending way. using namespace System::Collections::Generic; ref class RevCompare:public IComparer&#38;lt;int&#38;gt; [...]]]></description>
		<wfw:commentRss>http://www.visualcpp.org/?feed=rss2&amp;p=322</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IPC: Using Memory Mapped Files!</title>
		<link>http://www.visualcpp.org/?p=288</link>
		<comments>http://www.visualcpp.org/?p=288#comments</comments>
		<pubDate>Sun, 11 Jul 2010 05:49:03 +0000</pubDate>
		<dc:creator>VisualCPP</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[IPC]]></category>
		<category><![CDATA[Win32]]></category>

		<guid isPermaLink="false">http://www.visualcpp.org/?p=288</guid>
		<description><![CDATA[There are many ways you can do inter-process communication in unmanaged world. One of them is data sharing using memory mapped files. Here how’s it work. Server Application:- Create File Handle using CreateFileMapping. Use MapViewOfFile function to get starting address of shared memory address. Use Starting address pointer receieved in last step to update information [...]]]></description>
		<wfw:commentRss>http://www.visualcpp.org/?feed=rss2&amp;p=288</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Plot4: Smart Device Game!</title>
		<link>http://www.visualcpp.org/?p=260</link>
		<comments>http://www.visualcpp.org/?p=260#comments</comments>
		<pubDate>Mon, 05 Jul 2010 07:40:35 +0000</pubDate>
		<dc:creator>VisualCPP</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Smart Device]]></category>
		<category><![CDATA[Win32]]></category>

		<guid isPermaLink="false">http://www.visualcpp.org/?p=260</guid>
		<description><![CDATA[Out of hobby, I am making application(s) on window based smart devices. I opened Visual Studio 2008 (though I have VS2010 too, but I haven’t installed it’s fully) and selected smart device project targeting Mobile-Phone/Pocket-PC SDK. I am surprise to see almost same set of class I used for developing window application, however they are tear [...]]]></description>
		<wfw:commentRss>http://www.visualcpp.org/?feed=rss2&amp;p=260</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Conditioned Activity Group Activity in WF</title>
		<link>http://www.visualcpp.org/?p=350</link>
		<comments>http://www.visualcpp.org/?p=350#comments</comments>
		<pubDate>Sat, 03 Jul 2010 10:12:38 +0000</pubDate>
		<dc:creator>VisualCPP</dc:creator>
				<category><![CDATA[CSharp]]></category>
		<category><![CDATA[Managed VC]]></category>
		<category><![CDATA[WF]]></category>

		<guid isPermaLink="false">http://www.visualcpp.org/?p=350</guid>
		<description><![CDATA[Window workflow is quite easy to program and mantain, as you just need to convert you idea depicted as flowchart on paper to flowcharting like language on computer. It made programmer task easier, as it need to put more stress on coding business logic then actual language. Now this post I am going to show [...]]]></description>
		<wfw:commentRss>http://www.visualcpp.org/?feed=rss2&amp;p=350</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using WHILE Activity in WWF!</title>
		<link>http://www.visualcpp.org/?p=343</link>
		<comments>http://www.visualcpp.org/?p=343#comments</comments>
		<pubDate>Fri, 02 Jul 2010 11:26:36 +0000</pubDate>
		<dc:creator>VisualCPP</dc:creator>
				<category><![CDATA[CSharp]]></category>
		<category><![CDATA[WF]]></category>
		<category><![CDATA[WIN32_&_VC_NET]]></category>

		<guid isPermaLink="false">http://www.visualcpp.org/?p=343</guid>
		<description><![CDATA[This is in continuation with my last post. Now create a new workflow sequential class library.  Add One CODE Activity, name it as CA_EnterMinMaxNumber, then add a WHILE Activity and put a CODE activity inside it, name it as CA_ShowPrimeNo. After putting everything on workflow, your workflow would looks like this :- Now add public [...]]]></description>
		<wfw:commentRss>http://www.visualcpp.org/?feed=rss2&amp;p=343</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Window WF [IF-ELSE ACTIVITY] with Managed VC</title>
		<link>http://www.visualcpp.org/?p=332</link>
		<comments>http://www.visualcpp.org/?p=332#comments</comments>
		<pubDate>Fri, 02 Jul 2010 11:06:29 +0000</pubDate>
		<dc:creator>VisualCPP</dc:creator>
				<category><![CDATA[CSharp]]></category>
		<category><![CDATA[Managed VC]]></category>
		<category><![CDATA[WF]]></category>

		<guid isPermaLink="false">http://www.visualcpp.org/?p=332</guid>
		<description><![CDATA[Due to change in server, I lost almost one month blog data (some of the WF posts also). Anyways here again I am posting it again, this time writing WF library in C# and running it using managed C++. Program topic: - According to latest guidelines by Government of India “Hard drinks would be served [...]]]></description>
		<wfw:commentRss>http://www.visualcpp.org/?feed=rss2&amp;p=332</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Is there is any way to convert ASM program into C or C++ code?</title>
		<link>http://www.visualcpp.org/?p=296</link>
		<comments>http://www.visualcpp.org/?p=296#comments</comments>
		<pubDate>Thu, 01 Jul 2010 06:04:36 +0000</pubDate>
		<dc:creator>VisualCPP</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Win32]]></category>

		<guid isPermaLink="false">http://www.visualcpp.org/?p=296</guid>
		<description><![CDATA[Yes you can, there are many third party software available on internet, some of them are :-  Relogix DataTek This is not a advertisement, there might be more tool available on Internet. would update the list once find more!]]></description>
		<wfw:commentRss>http://www.visualcpp.org/?feed=rss2&amp;p=296</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
