<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:admin="http://webns.net/mvcb/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">
		
	<channel>
		<title>RSS Feeds :: C and C++ Programming Tutorials and Source Code - </title>
	<!--<atom:link href="http://www.mycplus.com/forum" rel="self" type="application/rss+xml" />-->
		<description>C and C++ Programming Tutorials, Source Code and Discussion Forum.</description>
		<link>http://www.mycplus.com/forum</link>
		<language>en-gb</language>
		<pubDate>Tue, 16 Sep 2008 16:38:06 -0700</pubDate>
		<lastBuildDate>Wed, 11 Nov 2009 05:49:03 -0700</lastBuildDate>
		<docs>http://blogs.law.harvard.edu/tech/rss</docs>
		<generator>MSSTI v0.0.1 - (C) 2008 leviatan21 - http://www.mssti.com/</generator>
		<copyright>Copyright : (c) RSS Feeds :: C and C++ Programming Tutorials and Source Code - Tue, 16 Sep 2008 16:38:06 -0700</copyright>
		<dc:creator>admin@mycplus.com (C and C++ Programming Tutorials and Source Code)</dc:creator>

		<image>
			<title>RSS Feeds :: C and C++ Programming Tutorials and Source Code - </title>
			<url>http://www.mycplus.com/forum/styles/prosilver/imageset/site_logo.gif</url>
			<link>http://www.mycplus.com/forum</link>
		</image>
		<ttl>60</ttl>
		
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/MycplusForum" type="application/rss+xml" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
			<title>C programming Tricky Question!!</title>
			<link>http://feedproxy.google.com/~r/MycplusForum/~3/DLlGil4HD24/post1358.htm</link>
				<description><![CDATA[ Hi All,<br /><br />I have a tricky question, I tried in different ways but
I couldnt solve the problem.Solution to my problem would be greatly
appreciated.<br /><br />I have a shell script which runs my
process(start/stop).Now the problem is , I need to support the same process
for different arguments.Suppose we have a binary named "super", I need to
run this process one each for different kind of arguments.<br />Say , I
have the following number of arguments :<br />1) super -a1 <br />2)super
-a2<br />3)super -a3<br /><br />I have a ...<p>Statistics : Posted by <a href="http://www.mycplus.com/forum/memberlist.php?mode=viewprofile&amp;u=2748">kansantosh</a> &bull; on Wed Oct 14, 2009 1:43 pm &bull; Replies 0 &bull; Views 217</p><hr />]]></description>
					<content:encoded><![CDATA[ Hi All,<br /><br />I have a tricky question, I tried in different ways but
I couldnt solve the problem.Solution to my problem would be greatly
appreciated.<br /><br />I have a shell script which runs my
process(start/stop).Now the problem is , I need to support the same process
for different arguments.Suppose we have a binary named "super", I need to
run this process one each for different kind of arguments.<br />Say , I
have the following number of arguments :<br />1) super -a1 <br />2)super
-a2<br />3)super -a3<br /><br />I have a ...<img src="http://feeds.feedburner.com/~r/MycplusForum/~4/DLlGil4HD24" height="1" width="1"/>]]></content:encoded>
					<category domain="http://www.mycplus.com/forum/viewforum.php?f=12"><![CDATA[C/C++ Programming Language]]></category>
			<dc:creator><![CDATA[2748]]></dc:creator>
			<dc:date>2009-10-14T05:43:15-07:00</dc:date>
			<guid isPermaLink="false">http://www.mycplus.com/forum/post1358.htm#p1358</guid>
		<feedburner:origLink>http://www.mycplus.com/forum/post1358.htm#p1358</feedburner:origLink></item>
			<item>
			<title>Re: WhiteSpaces and Blank Lines</title>
			<link>http://feedproxy.google.com/~r/MycplusForum/~3/YFc_ZkzunNc/post1357.htm</link>
				<description><![CDATA[  I'm not sure what compiler your using but the include file ctype.h has a
macro called isspace() that can be called on characters ,like:<br /><br
/><dl class="codebox"><dt>Code: </dt><dd><code>char ch = cin.get()<br />if
( isspace ( ch ) )<br />{<br />&nbsp; &nbsp; cout << "read a space" ;<br
/>}<br /></code></dd></dl> <br /><br />The definition is listed
as<blockquote class="uncited"><div>The isspace() function returns non-zero
if its argument is some sort of space (i.e. single space, tab, vertical
tab, form feed, carriage return, or newline). Otherwise, zero is returned.
</div></blockquote>...<p>Statistics : Posted by <a href="http://www.mycplus.com/forum/memberlist.php?mode=viewprofile&amp;u=1299">dman</a> &bull; on Sun Oct 04, 2009 5:02 am &bull; Replies 1 &bull; Views 104</p><hr />]]></description>
					<content:encoded><![CDATA[  I'm not sure what compiler your using but the include file ctype.h has a
macro called isspace() that can be called on characters ,like:<br /><br
/><dl class="codebox"><dt>Code: </dt><dd><code>char ch = cin.get()<br />if
( isspace ( ch ) )<br />{<br />&nbsp; &nbsp; cout << "read a space" ;<br
/>}<br /></code></dd></dl> <br /><br />The definition is listed
as<blockquote class="uncited"><div>The isspace() function returns non-zero
if its argument is some sort of space (i.e. single space, tab, vertical
tab, form feed, carriage return, or newline). Otherwise, zero is returned.
</div></blockquote>...<img src="http://feeds.feedburner.com/~r/MycplusForum/~4/YFc_ZkzunNc" height="1" width="1"/>]]></content:encoded>
					<category domain="http://www.mycplus.com/forum/viewforum.php?f=12"><![CDATA[C/C++ Programming Language]]></category>
			<dc:creator><![CDATA[1299]]></dc:creator>
			<dc:date>2009-10-05T10:19:27-07:00</dc:date>
			<guid isPermaLink="false">http://www.mycplus.com/forum/post1357.htm#p1357</guid>
		<feedburner:origLink>http://www.mycplus.com/forum/post1357.htm#p1357</feedburner:origLink></item>
			<item>
			<title>DDP Networks</title>
			<link>http://feedproxy.google.com/~r/MycplusForum/~3/atA9qvi_if4/post1355.htm</link>
				<description><![CDATA[  Advantages of DDP Networks: <br /><br />-Sophisticated computers and a
growing library of application programs is available to end-user when
needed.<br /><br />-Skilled computer/communication specialists can be
available to help network users to develop their own specialized
applications. <br /><br />-Availability of multiple processors in the
network permit peak load sharing and provides back-up facilities in the
event of equipment failure.<br /><br />-Users like<span style="font-weight:
bold"> <span style="font-style: italic"><a
href="http://www.intellixmedia.com/index.aspx" class="postlink">Web Design
Los Angeles</a> </span></span>...<p>Statistics : Posted by <a href="http://www.mycplus.com/forum/memberlist.php?mode=viewprofile&amp;u=2734">RaysSpicer</a> &bull; on Thu Oct 01, 2009 5:56 am &bull; Replies 0 &bull; Views 579</p><hr />]]></description>
					<content:encoded><![CDATA[  Advantages of DDP Networks: <br /><br />-Sophisticated computers and a
growing library of application programs is available to end-user when
needed.<br /><br />-Skilled computer/communication specialists can be
available to help network users to develop their own specialized
applications. <br /><br />-Availability of multiple processors in the
network permit peak load sharing and provides back-up facilities in the
event of equipment failure.<br /><br />-Users like<span style="font-weight:
bold"> <span style="font-style: italic"><a
href="http://www.intellixmedia.com/index.aspx" class="postlink">Web Design
Los Angeles</a> </span></span>...<img src="http://feeds.feedburner.com/~r/MycplusForum/~4/atA9qvi_if4" height="1" width="1"/>]]></content:encoded>
					<category domain="http://www.mycplus.com/forum/viewforum.php?f=58"><![CDATA[ASP and ASP .NET Development]]></category>
			<dc:creator><![CDATA[2734]]></dc:creator>
			<dc:date>2009-09-30T21:56:49-07:00</dc:date>
			<guid isPermaLink="false">http://www.mycplus.com/forum/post1355.htm#p1355</guid>
		<feedburner:origLink>http://www.mycplus.com/forum/post1355.htm#p1355</feedburner:origLink></item>
			<item>
			<title>Re: Library Question</title>
			<link>http://feedproxy.google.com/~r/MycplusForum/~3/5Nu5Ysp4uHc/post1354.htm</link>
				<description><![CDATA[dman<br /><br />Thanks for your reply <br /><br />Jeff<p>Statistics : Posted by <a href="http://www.mycplus.com/forum/memberlist.php?mode=viewprofile&amp;u=2727">jeff22</a> &bull; on Thu Sep 24, 2009 12:51 pm &bull; Replies 2 &bull; Views 119</p><hr />]]></description>
					<content:encoded><![CDATA[dman<br /><br />Thanks for your reply <br /><br />Jeff<img src="http://feeds.feedburner.com/~r/MycplusForum/~4/5Nu5Ysp4uHc" height="1" width="1"/>]]></content:encoded>
					<category domain="http://www.mycplus.com/forum/viewforum.php?f=12"><![CDATA[C/C++ Programming Language]]></category>
			<dc:creator><![CDATA[2727]]></dc:creator>
			<dc:date>2009-09-28T06:33:47-07:00</dc:date>
			<guid isPermaLink="false">http://www.mycplus.com/forum/post1354.htm#p1354</guid>
		<feedburner:origLink>http://www.mycplus.com/forum/post1354.htm#p1354</feedburner:origLink></item>
			<item>
			<title>Re: Concept utilising file transfer from client to server</title>
			<link>http://feedproxy.google.com/~r/MycplusForum/~3/8XwzQ5VxytQ/post1351.htm</link>
				<description><![CDATA[I guess there is ERROR writing to socket because you might need some socket
initialization.<br /><br /><br />__________________<br /><a
href="http://www.suite101.com/freelance_writing_jobs/"
class="postlink">Writing jobs</a><p>Statistics : Posted by <a href="http://www.mycplus.com/forum/memberlist.php?mode=viewprofile&amp;u=2718">budongsmith</a> &bull; on Tue Jul 31, 2007 4:14 am &bull; Replies 1 &bull; Views 776</p><hr />]]></description>
					<content:encoded><![CDATA[I guess there is ERROR writing to socket because you might need some socket
initialization.<br /><br /><br />__________________<br /><a
href="http://www.suite101.com/freelance_writing_jobs/"
class="postlink">Writing jobs</a><img src="http://feeds.feedburner.com/~r/MycplusForum/~4/8XwzQ5VxytQ" height="1" width="1"/>]]></content:encoded>
					<category domain="http://www.mycplus.com/forum/viewforum.php?f=12"><![CDATA[C/C++ Programming Language]]></category>
			<dc:creator><![CDATA[2718]]></dc:creator>
			<dc:date>2009-09-14T19:55:10-07:00</dc:date>
			<guid isPermaLink="false">http://www.mycplus.com/forum/post1351.htm#p1351</guid>
		<feedburner:origLink>http://www.mycplus.com/forum/post1351.htm#p1351</feedburner:origLink></item>
			<item>
			<title>Convert between C# and Java with CSharpJavaMerger</title>
			<link>http://feedproxy.google.com/~r/MycplusForum/~3/E06YDJDjAGk/post1350.htm</link>
				<description><![CDATA[ CSharpJavaMerger is an open source tool. It provides common interfaces of
C# and Java and enables you to write one set of code which can be used both
by C# and Java.<br /><br />Below is a method that can be used in both of C#
and Java. In the sample, CString is a class defined in the CSharpJavaMerger
Framework. <br /><br />public void AddTwoValues()<br />{<br />    try<br />
   {<br />        CString strValue1 = m_mainForm.GetFirstTextBoxValue();<br
/>        CString strValue2 = m_mainForm.GetSecondTextBoxValue();<br /><br
/>        int iValue1 = s...<p>Statistics : Posted by <a href="http://www.mycplus.com/forum/memberlist.php?mode=viewprofile&amp;u=2717">sindy55</a> &bull; on Thu Sep 10, 2009 7:30 am &bull; Replies 0 &bull; Views 836</p><hr />]]></description>
					<content:encoded><![CDATA[ CSharpJavaMerger is an open source tool. It provides common interfaces of
C# and Java and enables you to write one set of code which can be used both
by C# and Java.<br /><br />Below is a method that can be used in both of C#
and Java. In the sample, CString is a class defined in the CSharpJavaMerger
Framework. <br /><br />public void AddTwoValues()<br />{<br />    try<br />
   {<br />        CString strValue1 = m_mainForm.GetFirstTextBoxValue();<br
/>        CString strValue2 = m_mainForm.GetSecondTextBoxValue();<br /><br
/>        int iValue1 = s...<img src="http://feeds.feedburner.com/~r/MycplusForum/~4/E06YDJDjAGk" height="1" width="1"/>]]></content:encoded>
					<category domain="http://www.mycplus.com/forum/viewforum.php?f=53"><![CDATA[.NET and C# Programming]]></category>
			<dc:creator><![CDATA[2717]]></dc:creator>
			<dc:date>2009-09-09T23:30:27-07:00</dc:date>
			<guid isPermaLink="false">http://www.mycplus.com/forum/post1350.htm#p1350</guid>
		<feedburner:origLink>http://www.mycplus.com/forum/post1350.htm#p1350</feedburner:origLink></item>
			<item>
			<title>Re: need help in adding a charecter to the file name</title>
			<link>http://feedproxy.google.com/~r/MycplusForum/~3/MKDOcDgfUdY/post1349.htm</link>
				<description><![CDATA[  could just do this:<br /><br /><dl class="codebox"><dt>Code:
</dt><dd><code> <br
/>/****************************************************************<br />*
File Name : c:\programs\tempCG.cpp<br />* Date : September,9,2009<br />*
Comments : new project<br />* Compiler/Assembler : Visual C++ 6.0<br />*
Modifications : <br />*<br />*<br />*<br />*<br />*<br />* Program Shell
Generated At: 6:23:04 p.m.<br
/>=-=-=-=-=-=-=-=--=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/<br
/><br /><br />#include < stdio.h ><br />#include < string.h ><br />#include
< stdlib.h ><br />//#</code></dd></dl>...<p>Statistics : Posted by <a href="http://www.mycplus.com/forum/memberlist.php?mode=viewprofile&amp;u=1299">dman</a> &bull; on Tue Sep 08, 2009 7:55 am &bull; Replies 2 &bull; Views 99</p><hr />]]></description>
					<content:encoded><![CDATA[  could just do this:<br /><br /><dl class="codebox"><dt>Code:
</dt><dd><code> <br
/>/****************************************************************<br />*
File Name : c:\programs\tempCG.cpp<br />* Date : September,9,2009<br />*
Comments : new project<br />* Compiler/Assembler : Visual C++ 6.0<br />*
Modifications : <br />*<br />*<br />*<br />*<br />*<br />* Program Shell
Generated At: 6:23:04 p.m.<br
/>=-=-=-=-=-=-=-=--=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/<br
/><br /><br />#include < stdio.h ><br />#include < string.h ><br />#include
< stdlib.h ><br />//#</code></dd></dl>...<img src="http://feeds.feedburner.com/~r/MycplusForum/~4/MKDOcDgfUdY" height="1" width="1"/>]]></content:encoded>
					<category domain="http://www.mycplus.com/forum/viewforum.php?f=12"><![CDATA[C/C++ Programming Language]]></category>
			<dc:creator><![CDATA[1299]]></dc:creator>
			<dc:date>2009-09-09T15:57:12-07:00</dc:date>
			<guid isPermaLink="false">http://www.mycplus.com/forum/post1349.htm#p1349</guid>
		<feedburner:origLink>http://www.mycplus.com/forum/post1349.htm#p1349</feedburner:origLink></item>
			<item>
			<title>How can we know whether a file is read or not</title>
			<link>http://feedproxy.google.com/~r/MycplusForum/~3/82129H8lG54/post1348.htm</link>
				<description><![CDATA[how can we know whether a particular file is read or not using c
programming.<br /><br />for an example:<br /><br />the file name =
abcd.txt<br /><br />the status of the file should be 0 if the person has
not opened it and it should be changed to 1 after any one reads it<br /><br
/>how can we do this<p>Statistics : Posted by <a href="http://www.mycplus.com/forum/memberlist.php?mode=viewprofile&amp;u=2714">swathin2</a> &bull; on Tue Sep 08, 2009 12:25 pm &bull; Replies 0 &bull; Views 27</p><hr />]]></description>
					<content:encoded><![CDATA[how can we know whether a particular file is read or not using c
programming.<br /><br />for an example:<br /><br />the file name =
abcd.txt<br /><br />the status of the file should be 0 if the person has
not opened it and it should be changed to 1 after any one reads it<br /><br
/>how can we do this<img src="http://feeds.feedburner.com/~r/MycplusForum/~4/82129H8lG54" height="1" width="1"/>]]></content:encoded>
					<category domain="http://www.mycplus.com/forum/viewforum.php?f=12"><![CDATA[C/C++ Programming Language]]></category>
			<dc:creator><![CDATA[2714]]></dc:creator>
			<dc:date>2009-09-08T04:25:04-07:00</dc:date>
			<guid isPermaLink="false">http://www.mycplus.com/forum/post1348.htm#p1348</guid>
		<feedburner:origLink>http://www.mycplus.com/forum/post1348.htm#p1348</feedburner:origLink></item>
			<item>
			<title>How can we know whether a file is read or not</title>
			<link>http://feedproxy.google.com/~r/MycplusForum/~3/QkwNMGdW3Ds/post1347.htm</link>
				<description><![CDATA[how can we know whether a particular file is read or not using c
programming.<br /><br />for an example:<br /><br />the file name =
abcd.txt<br /><br />the status of the file should be 0 if the person has
not opened it and it should be changed to 1 after any one reads it<br /><br
/>how can we do this<p>Statistics : Posted by <a href="http://www.mycplus.com/forum/memberlist.php?mode=viewprofile&amp;u=2714">swathin2</a> &bull; on Tue Sep 08, 2009 12:23 pm &bull; Replies 0 &bull; Views 18</p><hr />]]></description>
					<content:encoded><![CDATA[how can we know whether a particular file is read or not using c
programming.<br /><br />for an example:<br /><br />the file name =
abcd.txt<br /><br />the status of the file should be 0 if the person has
not opened it and it should be changed to 1 after any one reads it<br /><br
/>how can we do this<img src="http://feeds.feedburner.com/~r/MycplusForum/~4/QkwNMGdW3Ds" height="1" width="1"/>]]></content:encoded>
					<category domain="http://www.mycplus.com/forum/viewforum.php?f=12"><![CDATA[C/C++ Programming Language]]></category>
			<dc:creator><![CDATA[2714]]></dc:creator>
			<dc:date>2009-09-08T04:23:11-07:00</dc:date>
			<guid isPermaLink="false">http://www.mycplus.com/forum/post1347.htm#p1347</guid>
		<feedburner:origLink>http://www.mycplus.com/forum/post1347.htm#p1347</feedburner:origLink></item>
			<item>
			<title>MacBook won't burn cdrw?</title>
			<link>http://feedproxy.google.com/~r/MycplusForum/~3/Fozi8ep3zzw/post1344.htm</link>
				<description><![CDATA[  Good evening<br /><br />Whenever I try to burn a music DVD on iTunes it
makes this odd clicking noise and doesn't end up burning the DVDRW.<br />I
tried using the regular drag and drop onto the CDRW burning folder itself
and it still makes this odd clicking noise.<br />I'm using Maxell DVD and
they worked fine when I first got them then all of a sudden it's doing
this.<br />I've tried another brand of disk (tdk) and it's still making the
same noise...<br /><br />Any advice any of you?<br /><br /><br
/>_________________<br />Best<a
href="http://www.youtube.com/watch?v=jwrbG1hJFEw" class="postlink">fap
turbo</a>...<p>Statistics : Posted by <a href="http://www.mycplus.com/forum/memberlist.php?mode=viewprofile&amp;u=2713">Gonnedoc</a> &bull; on Sat Nov 01, 2008 9:25 am &bull; Replies 1 &bull; Views 727</p><hr />]]></description>
					<content:encoded><![CDATA[  Good evening<br /><br />Whenever I try to burn a music DVD on iTunes it
makes this odd clicking noise and doesn't end up burning the DVDRW.<br />I
tried using the regular drag and drop onto the CDRW burning folder itself
and it still makes this odd clicking noise.<br />I'm using Maxell DVD and
they worked fine when I first got them then all of a sudden it's doing
this.<br />I've tried another brand of disk (tdk) and it's still making the
same noise...<br /><br />Any advice any of you?<br /><br /><br
/>_________________<br />Best<a
href="http://www.youtube.com/watch?v=jwrbG1hJFEw" class="postlink">fap
turbo</a>...<img src="http://feeds.feedburner.com/~r/MycplusForum/~4/Fozi8ep3zzw" height="1" width="1"/>]]></content:encoded>
					<category domain="http://www.mycplus.com/forum/viewforum.php?f=52"><![CDATA[Visual C++ Programming]]></category>
			<dc:creator><![CDATA[2713]]></dc:creator>
			<dc:date>2009-09-06T15:42:27-07:00</dc:date>
			<guid isPermaLink="false">http://www.mycplus.com/forum/post1344.htm#p1344</guid>
		<feedburner:origLink>http://www.mycplus.com/forum/post1344.htm#p1344</feedburner:origLink></item>
			<item>
			<title>Re: Read 1st col vals of i/pfile;create o/p fl for each diff val</title>
			<link>http://feedproxy.google.com/~r/MycplusForum/~3/w2Ku4c4o2f0/post1343.htm</link>
				<description><![CDATA[  I had modified my program with the following code to read each value of
column 1 of my input file (*.ref) and create multiple Output files (*.brt)
with name as the value at the column 1 of the input file. For each change
in the value at column 1 of input file, a new output file (*.brt) should be
created. But it doesn't seem to do what is required and when I run the
application it gets hung. Could you please help me with the changes to the
following code so that it works :-<br /><br /><dl class="codebox"><dt>Code:
</dt><dd><code> <br />**********************</code></dd></dl>...<p>Statistics : Posted by <a href="http://www.mycplus.com/forum/memberlist.php?mode=viewprofile&amp;u=2696">marconi07</a> &bull; on Thu Aug 20, 2009 2:23 pm &bull; Replies 2 &bull; Views 241</p><hr />]]></description>
					<content:encoded><![CDATA[  I had modified my program with the following code to read each value of
column 1 of my input file (*.ref) and create multiple Output files (*.brt)
with name as the value at the column 1 of the input file. For each change
in the value at column 1 of input file, a new output file (*.brt) should be
created. But it doesn't seem to do what is required and when I run the
application it gets hung. Could you please help me with the changes to the
following code so that it works :-<br /><br /><dl class="codebox"><dt>Code:
</dt><dd><code> <br />**********************</code></dd></dl>...<img src="http://feeds.feedburner.com/~r/MycplusForum/~4/w2Ku4c4o2f0" height="1" width="1"/>]]></content:encoded>
					<category domain="http://www.mycplus.com/forum/viewforum.php?f=12"><![CDATA[C/C++ Programming Language]]></category>
			<dc:creator><![CDATA[2696]]></dc:creator>
			<dc:date>2009-09-03T09:41:53-07:00</dc:date>
			<guid isPermaLink="false">http://www.mycplus.com/forum/post1343.htm#p1343</guid>
		<feedburner:origLink>http://www.mycplus.com/forum/post1343.htm#p1343</feedburner:origLink></item>
			<item>
			<title>How to add Version to DLL created by a VC++ build in VS 6.0</title>
			<link>http://feedproxy.google.com/~r/MycplusForum/~3/HCxYhuBlZWo/post1342.htm</link>
				<description><![CDATA[ I have a DLL created by a VC++ build in Visual Studio 6.0. When I right
click on the DLL, I could just see 'General', 'Security' and 'Summary' Tabs
but I am not able to view the 'version' tab under Properties.<br /><br />In
Visual Studio 2005, if the 'Version' tab is not available, I am able to add
the 'Version' Tab as follows :-  Resource Files -> Add -> Resource.. ->
Version<br /><br />However for the VC++ DLL created in Visual Studio 6.0, I
am not able to add the version. I believe this is a trivial ch...<p>Statistics : Posted by <a href="http://www.mycplus.com/forum/memberlist.php?mode=viewprofile&amp;u=2696">marconi07</a> &bull; on Thu Aug 27, 2009 3:21 pm &bull; Replies 0 &bull; Views 211</p><hr />]]></description>
					<content:encoded><![CDATA[ I have a DLL created by a VC++ build in Visual Studio 6.0. When I right
click on the DLL, I could just see 'General', 'Security' and 'Summary' Tabs
but I am not able to view the 'version' tab under Properties.<br /><br />In
Visual Studio 2005, if the 'Version' tab is not available, I am able to add
the 'Version' Tab as follows :-  Resource Files -> Add -> Resource.. ->
Version<br /><br />However for the VC++ DLL created in Visual Studio 6.0, I
am not able to add the version. I believe this is a trivial ch...<img src="http://feeds.feedburner.com/~r/MycplusForum/~4/HCxYhuBlZWo" height="1" width="1"/>]]></content:encoded>
					<category domain="http://www.mycplus.com/forum/viewforum.php?f=52"><![CDATA[Visual C++ Programming]]></category>
			<dc:creator><![CDATA[2696]]></dc:creator>
			<dc:date>2009-08-27T07:21:57-07:00</dc:date>
			<guid isPermaLink="false">http://www.mycplus.com/forum/post1342.htm#p1342</guid>
		<feedburner:origLink>http://www.mycplus.com/forum/post1342.htm#p1342</feedburner:origLink></item>
			<item>
			<title>A list of good VC++ Extension Library for every developers</title>
			<link>http://feedproxy.google.com/~r/MycplusForum/~3/rvcJIzSRXaU/post1341.htm</link>
				<description><![CDATA[ I find a few good vc++ extension library, I think it will be useful for
everyone.<br />A list of good VC++ Extension Library for every
developers:<br />1. Office 2007 like GUI toolkit: (From bcgsoft)<br
/>"http://www.bcgsoft.com"<br /><br />2. VC++ Flow Diagramming, Drawing,
Printing, HMI Source Code Kit: (From ucancode software)<br
/>"http://www.ucancode.net"<br /><br />3. VC++ Grid Control...<p>Statistics : Posted by <a href="http://www.mycplus.com/forum/memberlist.php?mode=viewprofile&amp;u=2708">jackzhangonlyone</a> &bull; on Thu Aug 27, 2009 7:59 am &bull; Replies 0 &bull; Views 47</p><hr />]]></description>
					<content:encoded><![CDATA[ I find a few good vc++ extension library, I think it will be useful for
everyone.<br />A list of good VC++ Extension Library for every
developers:<br />1. Office 2007 like GUI toolkit: (From bcgsoft)<br
/>"http://www.bcgsoft.com"<br /><br />2. VC++ Flow Diagramming, Drawing,
Printing, HMI Source Code Kit: (From ucancode software)<br
/>"http://www.ucancode.net"<br /><br />3. VC++ Grid Control...<img src="http://feeds.feedburner.com/~r/MycplusForum/~4/rvcJIzSRXaU" height="1" width="1"/>]]></content:encoded>
					<category domain="http://www.mycplus.com/forum/viewforum.php?f=52"><![CDATA[Visual C++ Programming]]></category>
			<dc:creator><![CDATA[2708]]></dc:creator>
			<dc:date>2009-08-26T23:59:45-07:00</dc:date>
			<guid isPermaLink="false">http://www.mycplus.com/forum/post1341.htm#p1341</guid>
		<feedburner:origLink>http://www.mycplus.com/forum/post1341.htm#p1341</feedburner:origLink></item>
			<item>
			<title>Please help...</title>
			<link>http://feedproxy.google.com/~r/MycplusForum/~3/KqqxGbwQG4w/post1338.htm</link>
				<description><![CDATA[  Hi,<br /><br />I have the following C code, which does the following
:-<br /><br />Takes the brt file name from character 1 of the input
filename (ALLSMFAS.ref) and creates a new file (A.brt) as follows :-<br
/><br />ALLSMFAS.ref<br />-----------------<br
/>AD,B,0424,0415,89375,,A,2,,80,,<br />AD,B,0424,0417,89375,,A,1,,82,,<br
/>AD,B,0416,0410,89375,,B,2,,-7,2,<br />BN,B,0135,0094,65625,,D,,,0,1,H<br
/>BN,B,0338,0337,65824,,B,,,-18,1,<br />BN,B,0334,0339,65824,,C,,,65,,<br
/>CA,T,,SREC,47221,,C,,R,0,,<br />CA,T,,X171,47221,,A,6,,60,,<br
/>CA,T,,X173,47221,,A,5,,60,,<br />CC,B,1783,1574,48231,,C,1,,60,,<br
/>CC,B,1783,1576,48231,,C,2,,60,,<br />CC,B,1783,1578,48231,,C,3,,60,,<br
/><br /><br />A.brt<br />------<br />B0424041589375...<p>Statistics : Posted by <a href="http://www.mycplus.com/forum/memberlist.php?mode=viewprofile&amp;u=2696">marconi07</a> &bull; on Wed Aug 19, 2009 3:23 pm &bull; Replies 0 &bull; Views 59</p><hr />]]></description>
					<content:encoded><![CDATA[  Hi,<br /><br />I have the following C code, which does the following
:-<br /><br />Takes the brt file name from character 1 of the input
filename (ALLSMFAS.ref) and creates a new file (A.brt) as follows :-<br
/><br />ALLSMFAS.ref<br />-----------------<br
/>AD,B,0424,0415,89375,,A,2,,80,,<br />AD,B,0424,0417,89375,,A,1,,82,,<br
/>AD,B,0416,0410,89375,,B,2,,-7,2,<br />BN,B,0135,0094,65625,,D,,,0,1,H<br
/>BN,B,0338,0337,65824,,B,,,-18,1,<br />BN,B,0334,0339,65824,,C,,,65,,<br
/>CA,T,,SREC,47221,,C,,R,0,,<br />CA,T,,X171,47221,,A,6,,60,,<br
/>CA,T,,X173,47221,,A,5,,60,,<br />CC,B,1783,1574,48231,,C,1,,60,,<br
/>CC,B,1783,1576,48231,,C,2,,60,,<br />CC,B,1783,1578,48231,,C,3,,60,,<br
/><br /><br />A.brt<br />------<br />B0424041589375...<img src="http://feeds.feedburner.com/~r/MycplusForum/~4/KqqxGbwQG4w" height="1" width="1"/>]]></content:encoded>
					<category domain="http://www.mycplus.com/forum/viewforum.php?f=12"><![CDATA[C/C++ Programming Language]]></category>
			<dc:creator><![CDATA[2696]]></dc:creator>
			<dc:date>2009-08-19T07:23:48-07:00</dc:date>
			<guid isPermaLink="false">http://www.mycplus.com/forum/post1338.htm#p1338</guid>
		<feedburner:origLink>http://www.mycplus.com/forum/post1338.htm#p1338</feedburner:origLink></item>
			<item>
			<title>Re: please help me in finding out the bug in this program</title>
			<link>http://feedproxy.google.com/~r/MycplusForum/~3/r0ajt0o26ys/post1337.htm</link>
				<description><![CDATA[  heres an infix to postfix program I have laying around:<br /><br /><dl
class="codebox"><dt>Code: </dt><dd><code> <br /><br />#include < conio.h
><br />#include < math.h ><br />#include < string.h ><br />#include <
stdlib.h ><br />#include < stdio.h ><br /><br />enum Boolean { False = 0 ,
True = 1 } ;<br />const int GREATER = 1 ;<br />const int NOTGREATER = 0
;<br />int cnt = 0 , cntcol = 0 , postcnt = 0 ;<br /><br />//
---------------------------------------------------<br />struct Stack<br
/>{<br />&nbsp; &nbsp;int info ;<br />&nbsp; &nbsp;Stack * previous;<br />}
* top;<br /><br />//
--------------------------------------------</code></dd></dl>...<p>Statistics : Posted by <a href="http://www.mycplus.com/forum/memberlist.php?mode=viewprofile&amp;u=1299">dman</a> &bull; on Sun Aug 16, 2009 5:42 am &bull; Replies 2 &bull; Views 197</p><hr />]]></description>
					<content:encoded><![CDATA[  heres an infix to postfix program I have laying around:<br /><br /><dl
class="codebox"><dt>Code: </dt><dd><code> <br /><br />#include < conio.h
><br />#include < math.h ><br />#include < string.h ><br />#include <
stdlib.h ><br />#include < stdio.h ><br /><br />enum Boolean { False = 0 ,
True = 1 } ;<br />const int GREATER = 1 ;<br />const int NOTGREATER = 0
;<br />int cnt = 0 , cntcol = 0 , postcnt = 0 ;<br /><br />//
---------------------------------------------------<br />struct Stack<br
/>{<br />&nbsp; &nbsp;int info ;<br />&nbsp; &nbsp;Stack * previous;<br />}
* top;<br /><br />//
--------------------------------------------</code></dd></dl>...<img src="http://feeds.feedburner.com/~r/MycplusForum/~4/r0ajt0o26ys" height="1" width="1"/>]]></content:encoded>
					<category domain="http://www.mycplus.com/forum/viewforum.php?f=12"><![CDATA[C/C++ Programming Language]]></category>
			<dc:creator><![CDATA[1299]]></dc:creator>
			<dc:date>2009-08-16T08:26:14-07:00</dc:date>
			<guid isPermaLink="false">http://www.mycplus.com/forum/post1337.htm#p1337</guid>
		<feedburner:origLink>http://www.mycplus.com/forum/post1337.htm#p1337</feedburner:origLink></item>
			<item>
			<title>Click to jump to page…</title>
			<description><![CDATA[
			<div class="pagination">
				  Page <strong>1</strong> of <strong>7</strong> &bull; <span><strong>1</strong><span class="page-sep">, </span><a href="rss.php?start=15">2</a><span class="page-sep">, </span><a href="rss.php?start=30">3</a><span class="page-sep">, </span><a href="rss.php?start=45">4</a><span class="page-sep">, </span><a href="rss.php?start=60">5</a> ... <a href="rss.php?start=90">7</a></span>			</div>
			<hr />]]></description>
			<guid isPermaLink="false" />
        </item>
	
	</channel>
</rss>
