<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: How to  create a VB6 console program</title>
	<atom:link href="http://www.xaprb.com/blog/2005/10/14/how-to-create-a-vb6-console-program/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.xaprb.com/blog/2005/10/14/how-to-create-a-vb6-console-program/</link>
	<description>Stay curious!</description>
	<lastBuildDate>Thu, 09 Feb 2012 09:56:43 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Amaro</title>
		<link>http://www.xaprb.com/blog/2005/10/14/how-to-create-a-vb6-console-program/#comment-19188</link>
		<dc:creator>Amaro</dc:creator>
		<pubDate>Thu, 03 Mar 2011 20:20:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.xaprb.com/blog/?p=25#comment-19188</guid>
		<description>Thank you, though I&#039;m an experienced VB programmer I also had to use C/C++ to have this job accomplished. Great job!</description>
		<content:encoded><![CDATA[<p>Thank you, though I&#8217;m an experienced VB programmer I also had to use C/C++ to have this job accomplished. Great job!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris</title>
		<link>http://www.xaprb.com/blog/2005/10/14/how-to-create-a-vb6-console-program/#comment-17798</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Thu, 11 Feb 2010 04:38:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.xaprb.com/blog/?p=25#comment-17798</guid>
		<description>Excellent article!  I needed a &quot;simple&quot; File-Open dialog which is not simple at all when it comes to including in a distro (CommonDialog requires an OCX which only comes with a Visual Studio distro).  I found a link on usoft&#039;s support site which got the program built, BUT I needed the other half, which was to allow it to be called as a command and output to stdout.  Your article did both these - thanks!</description>
		<content:encoded><![CDATA[<p>Excellent article!  I needed a &#8220;simple&#8221; File-Open dialog which is not simple at all when it comes to including in a distro (CommonDialog requires an OCX which only comes with a Visual Studio distro).  I found a link on usoft&#8217;s support site which got the program built, BUT I needed the other half, which was to allow it to be called as a command and output to stdout.  Your article did both these &#8211; thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Greenland</title>
		<link>http://www.xaprb.com/blog/2005/10/14/how-to-create-a-vb6-console-program/#comment-16492</link>
		<dc:creator>Greenland</dc:creator>
		<pubDate>Mon, 01 Jun 2009 10:28:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.xaprb.com/blog/?p=25#comment-16492</guid>
		<description>Thank you, very useful advice. So I didn&#039;t have to reinvent the wheel.</description>
		<content:encoded><![CDATA[<p>Thank you, very useful advice. So I didn&#8217;t have to reinvent the wheel.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave</title>
		<link>http://www.xaprb.com/blog/2005/10/14/how-to-create-a-vb6-console-program/#comment-16462</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Thu, 21 May 2009 13:21:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.xaprb.com/blog/?p=25#comment-16462</guid>
		<description>Wow, great article. Thanks a lot, you saved me a lot of headaches!</description>
		<content:encoded><![CDATA[<p>Wow, great article. Thanks a lot, you saved me a lot of headaches!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Videogamer</title>
		<link>http://www.xaprb.com/blog/2005/10/14/how-to-create-a-vb6-console-program/#comment-15334</link>
		<dc:creator>Videogamer</dc:creator>
		<pubDate>Sun, 02 Nov 2008 05:23:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.xaprb.com/blog/?p=25#comment-15334</guid>
		<description>In Visual C++ the default way of making programs (despite being &quot;Visual&quot;) IS through the command line. I HATE API programing for VB. I like simple commands like
text1.text=&quot;this is a test&quot;
I wish MORE commands were standard (not API) commands, because I HATE having to write out non-intuitive delarations in my code to acomplish a seamingly simple task. And I wen I found this article, I was HOPING for a SIMPLE way (no API calls or other crap) of acheaving a command line application. But your best answer involves doing FOUR WHOLE DIFFERENT STEPS just to set it up. And that is stuff that has to be done BEFORE writing the actual program. I was HOPING that just switching to Sub Main (instead of Form1) for starting the program in console mode would work. I tried that but it didn&#039;t work, so I was hoping for another VERY easy solution. But you just gave me the worlds most convoluted programing crap EVER! The ONLY reason I like VB more than C++, is because it is an overall easier programing language to use. However, C++ is MUCH better than VB for command line apps. And I still can&#039;t get over the thought that there MUST be SOME easier way (maybe installing a typelib or dll file) that would make it VERY easy to write a command line app in VB.</description>
		<content:encoded><![CDATA[<p>In Visual C++ the default way of making programs (despite being &#8220;Visual&#8221;) IS through the command line. I HATE API programing for VB. I like simple commands like<br />
text1.text=&#8221;this is a test&#8221;<br />
I wish MORE commands were standard (not API) commands, because I HATE having to write out non-intuitive delarations in my code to acomplish a seamingly simple task. And I wen I found this article, I was HOPING for a SIMPLE way (no API calls or other crap) of acheaving a command line application. But your best answer involves doing FOUR WHOLE DIFFERENT STEPS just to set it up. And that is stuff that has to be done BEFORE writing the actual program. I was HOPING that just switching to Sub Main (instead of Form1) for starting the program in console mode would work. I tried that but it didn&#8217;t work, so I was hoping for another VERY easy solution. But you just gave me the worlds most convoluted programing crap EVER! The ONLY reason I like VB more than C++, is because it is an overall easier programing language to use. However, C++ is MUCH better than VB for command line apps. And I still can&#8217;t get over the thought that there MUST be SOME easier way (maybe installing a typelib or dll file) that would make it VERY easy to write a command line app in VB.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

