<?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>www.idevelopsoftware.com &#187; How To</title>
	<atom:link href="http://www.idevelopsoftware.com/topic/articles/howto/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.idevelopsoftware.com</link>
	<description>Homepage</description>
	<lastBuildDate>Thu, 19 Aug 2010 18:38:42 +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>HOWTO: Answer the question &#8220;Is {some site} up or down?&#8221;</title>
		<link>http://www.idevelopsoftware.com/2009/06/howto-answer-the-question-is-some-site-up-or-down/</link>
		<comments>http://www.idevelopsoftware.com/2009/06/howto-answer-the-question-is-some-site-up-or-down/#comments</comments>
		<pubDate>Sun, 28 Jun 2009 22:19:33 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[On-line Services]]></category>

		<guid isPermaLink="false">http://www.idevelopsoftware.com/?p=288</guid>
		<description><![CDATA[I just stumbled on a very cool service that helps you answer the question &#8220;Is {some site} up or down?&#8221; It couldn&#8217;t be simpler. Visit http://downforeveryoneorjustme.com and you will see a very simple form that looks like this: Enter the name of a site and the folks running the site will go check and see [...]]]></description>
			<content:encoded><![CDATA[<p>
I just stumbled on a very cool service that helps you answer the question &#8220;Is {some site} up or down?&#8221; It couldn&#8217;t be simpler.  Visit <a href="http://downforeveryoneorjustme.com">http://downforeveryoneorjustme.com</a> and you will see a very simple form that looks like this:
</p>
<div style="text-align:center;">
<img src="http://wp-media.s3.amazonaws.com/screenshots/downforeveryone-1.jpg"/>
</div>
<p>
Enter the name of a site and the folks running the site will go check and see if it is possible to visit the site from their location on the net.  If the site is reachable you will see something like this:
</p>
<div style="text-align:center;">
<img src="http://wp-media.s3.amazonaws.com/screenshots/downforeveryone-2.jpg"/>
</div>
<p>
If it is not reachable you will see something like this:
</p>
<div style="text-align:center;">
<img src="http://wp-media.s3.amazonaws.com/screenshots/downforeveryone-3.jpg"/>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.idevelopsoftware.com/2009/06/howto-answer-the-question-is-some-site-up-or-down/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting up Unit Testing in Xcode 3.1</title>
		<link>http://www.idevelopsoftware.com/2008/07/setting-up-unit-testing-in-xcode-31/</link>
		<comments>http://www.idevelopsoftware.com/2008/07/setting-up-unit-testing-in-xcode-31/#comments</comments>
		<pubDate>Mon, 28 Jul 2008 21:07:26 +0000</pubDate>
		<dc:creator>bsmith</dc:creator>
				<category><![CDATA[Cocoa]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[Objective-C]]></category>
		<category><![CDATA[Tips from the Trenches]]></category>
		<category><![CDATA[Xcode]]></category>

		<guid isPermaLink="false">http://idvlpsw.wordpress.com/?p=111</guid>
		<description><![CDATA[Xcode includes OCUnit, so you don&#8217;t need to get a copy. But, you might want to take a look at their website (http://sente.epfl.ch/software/ocunit/) for information and tutorials on how OCUnit is intended to be used. If you are planning on doing Test Driven Development (TDD) you may also want to get the following packages: OCMock [...]]]></description>
			<content:encoded><![CDATA[<p>
Xcode includes OCUnit, so you don&#8217;t need to get a copy.  But, you might want to take a look at their website (http://sente.epfl.ch/software/ocunit/) for information and tutorials on how OCUnit is intended to be used.
</p>
<p>
If you are planning on doing Test Driven Development (TDD) you may also want to get the following packages:</p>
<ul>
<li>OCMock &#8211; OCMock is an Objective-C implementation of mock objects. (<a href="http://www.mulle-kybernetik.com/software/OCMock/">http://www.mulle-kybernetik.com/software/OCMock/</a>)</li>
<li>Hamcrest &#8211; library of matchers for building test expressions (<a href="http://code.google.com/p/hamcrest/">http://code.google.com/p/hamcrest/</a>)</li>
</ul>
<p>
Other good articles on Xcode Unit Testing that I came across:</p>
<ul>
<li>Unit Testing with OCUnit &#8211; <a href="http://www.macdevcenter.com/pub/a/mac/2004/04/23/ocunit.html?page=1">http://www.macdevcenter.com/pub/a/mac/2004/04/23/ocunit.html?page=1</a></li>
<li>Test Driving Your Code with OCUnit &#8211; <a href="http://developer.apple.com/tools/unittest.html">http://developer.apple.com/tools/unittest.html</a></li>
<li>Xcode unit testing articles &#8211; <a href="http://chanson.livejournal.com/tag/unit+testing">http://chanson.livejournal.com/tag/unit+testing</a></li>
<li>Unit Testing with Xcode &#8211; <a href="http://www.stiefels.net/2007/05/01/unit-testing-with-xcode/">http://www.stiefels.net/2007/05/01/unit-testing-with-xcode/</a></li>
</ul>
<p>
By reading through the documents references above I was able to get OCUnit up and running for one of my projects.  It took a bit of experimentation, but in the end it looks like OCUnit will work just fine for doing TDD in Xcode with Objective-C.  Anyone wanting to try out TDD should give it a try. The benefits for your project are significant.  Go for it!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.idevelopsoftware.com/2008/07/setting-up-unit-testing-in-xcode-31/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Use QImage to create a composite image (i.e. One image with another overlaid on top of it.)</title>
		<link>http://www.idevelopsoftware.com/2008/03/use-qimage-to-create-a-composite-image-ie-one-image-with-another-overlaid-on-top-of-it/</link>
		<comments>http://www.idevelopsoftware.com/2008/03/use-qimage-to-create-a-composite-image-ie-one-image-with-another-overlaid-on-top-of-it/#comments</comments>
		<pubDate>Wed, 19 Mar 2008 22:19:01 +0000</pubDate>
		<dc:creator>bsmith</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Qt]]></category>

		<guid isPermaLink="false">http://idvlpsw.wordpress.com/?p=33</guid>
		<description><![CDATA[Today I wanted to combine two images of similar size to create a new image. The new image was going to be used for a toolbar button. I have purchased a set of commercial images in the PNG format for use on application toolbars. The set came with a bunch of overlay images that could [...]]]></description>
			<content:encoded><![CDATA[<p>
<span class="alignright"><a target="_blank" href="http://www.trolltech.com"><img src="http://idvlpsw.files.wordpress.com/2008/03/qt.png" alt="qt.png" border="0" width="48" height="48" /></a></span>Today I wanted to combine two images of similar size to create a new image. The new image was going to be used for a toolbar button. I have purchased a set of commercial images in the PNG format for use on application toolbars. The set came with a bunch of overlay images that could be used to modify each of the base images.  The overlays included things like arrows, warning signs, arrows, people, etc.  My first though for using these images was to fire up Adobe Illustrator and just create a new icon by merging the base and overlay together.  Then I realized that Qt could do the job for me at runtime, and with a little work I could dynamically overlay different badges on a base icon.
</p>
<p>
The code below can be used to construct a composite image. You pass in references to a base image and an overlay image. These images are used to construct a third image, and that is returned to the caller.</p>
<pre>
QImage createImageWithOverlay(const QImage&amp; baseImage, const QImage&amp; overlayImage)
{
    QImage imageWithOverlay = QImage(baseImage.size(), QImage::Format_ARGB32_Premultiplied);
    QPainter painter(&amp;imageWithOverlay);

    painter.setCompositionMode(QPainter::CompositionMode_Source);
    painter.fillRect(imageWithOverlay.rect(), Qt::transparent);

    painter.setCompositionMode(QPainter::CompositionMode_SourceOver);
    painter.drawImage(0, 0, baseImage);

    painter.setCompositionMode(QPainter::CompositionMode_SourceOver);
    painter.drawImage(0, 0, overlayImage);

    painter.end();

    return imageWithOverlay;
}
</pre>
</p>
<p>
Here is an example of using this routine to create an image that might be used to represent something being transfered from a network attached machine.</p>
<pre>
    QImage baseImage(":/Resources/connect_pc_64.png");
    QImage overlayLogoff(":/Resources/overlay_arrow_east_64.png");
    QImage logoffImage = createImageWithOverlay(baseImage, overlayLogoff)
</pre>
<p>The two source images and resulting composite are shown below.</p>
<ol>
<li>:/Resources/connect_pc_64.png</li>
<p><img src="http://idvlpsw.files.wordpress.com/2008/03/connect-pc-64.png" border="0" width="64" height="64" /></p>
<li>:/Resources/overlay_arrow_east_64.png</li>
<p><img src="http://idvlpsw.files.wordpress.com/2008/03/arrow-east-64.png" border="0" width="64" height="64" /></p>
<li>Generated Composite Image</li>
<p><img src="http://idvlpsw.files.wordpress.com/2008/03/logoffimage.png" border="0" width="64" height="64" /></p>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.idevelopsoftware.com/2008/03/use-qimage-to-create-a-composite-image-ie-one-image-with-another-overlaid-on-top-of-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HOWTO &#8211; Use Visual Studio 2005 for Qt Open Source Development</title>
		<link>http://www.idevelopsoftware.com/2006/02/howto-use-visual-studio-2005-for-qt-open-source-development/</link>
		<comments>http://www.idevelopsoftware.com/2006/02/howto-use-visual-studio-2005-for-qt-open-source-development/#comments</comments>
		<pubDate>Wed, 15 Feb 2006 00:13:00 +0000</pubDate>
		<dc:creator>bsmith</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Qt]]></category>

		<guid isPermaLink="false">http://idvlpsw.wordpress.com/?p=13</guid>
		<description><![CDATA[THIS IS A WORK IN PROGRESS. EXPECT UPDATES AND DON&#8217;T BE SURPRISED BY INCOMPLETE INFORMATION Trolltech has released Qt 4 under a dual-license for all supported platforms. In earlier versions of Qt they only released the open source version for Mac and Linux, leaving Windows developers with no choice but to purchase a commercial license. [...]]]></description>
			<content:encoded><![CDATA[<p><i>THIS IS A WORK IN PROGRESS. EXPECT UPDATES AND DON&#8217;T BE SURPRISED BY INCOMPLETE INFORMATION</i><span class="alignright"><a target="_blank" href="http://www.trolltech.com"><img src="http://idvlpsw.files.wordpress.com/2008/03/qt.png" alt="qtlogo_feature.png" border="0" /></a></span></p>
<p>Trolltech has released Qt 4 under a dual-license for all supported platforms. In earlier versions of Qt they only released the open source version for Mac and Linux, leaving Windows developers with no choice but to purchase a commercial license. That all changed with the release of Qt 4 when Trolltech started to provide an open source version for Windows development too! The only catch was that Trolltech only supports the MinGW GCC compiler for development using the open source version.</p>
<p>This article describes how to patch Qt 4 open source edition on Windows so you can develop using Visual Studio 2005. You can even develop using the free Express edition of Visual Studio 2005 so long as you also install the latest Platform SDK.</p>
<p>Please keep in mind that these patches and tips are not provided so you can get around the very generous Trolltech dual-license terms of use. If you are developing or intend to develop a commercial application using Qt 4 you must purchase a commercial license for Qt 4. Only use the information provided in this article if you wish to develop open source GPL software for the Windows platform and wish to use the Microsoft Visual C++ 2005 compiler instead of the MinGW GCC compiler.</p>
<h2>Download Qt 4.1 Source Code, Patches, and Notes</h2>
<ul>
<li>Download the latest open source Windows version of Qt 4.1 from Trolltech at http://www.trolltech.com/download/qt/windows.html.  Unzip the file to C:\. It will extract all of the files into a sub-directory called qt-win-opensource-src-4.1.0.</li>
<li>Download the latest patch file used to modify the open source version of Qt 4.1 to support Microsoft Visual Studio 2005 from Source Forge at http://sourceforge.net/projects/qtwin/. Unzip the file to C:\qt-win-opensource-src-4.1.0.</li>
<li>Download the build script, environment setup and notes from http://www.idevelopsoftware.com/downloads/qt/Qt41WinBuildScript.zip. Unzip the file to C:\qt-win-opensource-src-4.1.0.</li>
<li>If you don&#8217;t already have Visual Studio 2005 you can download the Express edition. You will also need to download the Platform SDK.
<p>http://msdn.microsoft.com/vstudio/express/visualC/default.aspx</p>
<p>http://msdn.microsoft.com/vstudio/express/visualc/usingpsdk/default.aspx</p>
</li>
</ul>
<h2>Building Qt 4.1 using Visual C++ 2005</h2>
<p>Open C:\qt-win-opensource-src-4.1.0 in Windows Explorer.<br />
 Double-click on the &#8220;Qt 4.1 Command Prompt&#8221; shortcut to open a Command Prompt window with the environment setup for Qt 4.1 development. IMPORTANT: You must already have Visual Studio 2005 installed. You may need to edit setenv.cmd if your copy of Visual Studio 2005 is not in the default location.</p>
<p>Run &#8220;installpatch41.bat&#8221;<br />
 This will patch the Qt 4.1 source code so it builds properly using the Visual C++ 2005 compiler.</p>
<p>Run &#8220;build.cmd&#8221;<br />
 This will build all of the Qt 4.1 libraries, utilities, and sample applications using the Visual C++ 2005 compiler.</p>
<p>To rebuild, if necessary, make sure to first clean up the previous build. Do this by running<br />
nmake distclean</p>
<p>from the C:\qt-win-opensource-src-4.1.0 directory.</p>
<p>External Tools Configuration in Visual Studio 2005</p>
<p>Launch Visual Studio 2005 and select the &#8220;External Tools&#8230;&#8221; item from the Tools menu.<br />
Use the &#8220;Add button to define each of the following external tools:</p>
<p>Title &#8230;&#8230;&#8230;&#8230;&#8230;&#8230;.. QMake (Project File Generation Mode)<br />
Command &#8230;&#8230;&#8230;&#8230;&#8230;&#8230; D:\qt-win-opensource-src-4.1.0\bin\qmake.exe<br />
Arguments &#8230;&#8230;&#8230;&#8230;&#8230;. -project -spec win32-msvc2005<br />
Initial directory &#8230;&#8230;.. $(ProjectDir)<br />
Use Output window &#8230;&#8230;.. [X]<br />
Treat output as Unicode .. [ ]<br />
Prompt for arguments &#8230;.. [ ]<br />
Close on exit &#8230;&#8230;&#8230;&#8230; [X]</p>
<p>Title &#8230;&#8230;&#8230;&#8230;&#8230;&#8230;.. QMake (Makefile Generation Mode)<br />
Command &#8230;&#8230;&#8230;&#8230;&#8230;&#8230; D:\qt-win-opensource-src-4.1.0\bin\qmake.exe<br />
Arguments &#8230;&#8230;&#8230;&#8230;&#8230;. -makefile -spec win32-msvc2005<br />
Initial directory &#8230;&#8230;.. $(ProjectDir)<br />
Use Output window &#8230;&#8230;.. [X]<br />
Treat output as Unicode .. [ ]<br />
Prompt for arguments &#8230;.. [ ]<br />
Close on exit &#8230;&#8230;&#8230;&#8230; [X]</p>
<p>Title &#8230;&#8230;&#8230;&#8230;&#8230;&#8230;.. Qt Designer<br />
Command &#8230;&#8230;&#8230;&#8230;&#8230;&#8230; D:\qt-win-opensource-src-4.1.0\bin\designer.exe<br />
Arguments &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
Initial directory &#8230;&#8230;.. $(ProjectDir)<br />
Use Output window &#8230;&#8230;.. [ ]<br />
Treat output as Unicode .. [ ]<br />
Prompt for arguments &#8230;.. [ ]<br />
Close on exit &#8230;&#8230;&#8230;&#8230; [ ]</p>
<p>Title &#8230;&#8230;&#8230;&#8230;&#8230;&#8230;.. Qt Assistant<br />
Command &#8230;&#8230;&#8230;&#8230;&#8230;&#8230; D:\qt-win-opensource-src-4.1.0\bin\assistant.exe<br />
Arguments &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
Initial directory &#8230;&#8230;.. $(ProjectDir)<br />
Use Output window &#8230;&#8230;.. [ ]<br />
Treat output as Unicode .. [ ]<br />
Prompt for arguments &#8230;.. [ ]<br />
Close on exit &#8230;&#8230;&#8230;&#8230; [ ]<br />
Adding a Qt 4.1 Development Toolbar</p>
<p>Add a new toolbar for Qt 4.1 Development by selecting &#8220;Customize&#8230;&#8221; from the Tools menu. Once the &#8220;Customize&#8221; dialog appears select the &#8220;Toolbars&#8221; tab and press &#8220;New&#8230;&#8221; For the toolbar name enter &#8220;Qt 4.1 Development&#8221; and press &#8220;OK&#8221;.<br />
Select the &#8220;Commands&#8221; tab on the &#8220;Customize&#8221; dialog. Select &#8220;Tools&#8221; from the &#8220;Categories:&#8221; list. Scroll down in the &#8220;Commands:&#8221; list until you see &#8220;External Command 7&#8243;. Drag commands 7, 8, 9, and 10 onto the new &#8220;Qt 4.1 Development&#8221; toolbar.<br />
Creating a New Visual Studio 2005 Project</p>
<p>Open the &#8220;New Project&#8221; dialog by selecting File-&gt;New-&gt;Project&#8230; from the menu. Under &#8220;Project types&#8221; on the left side of the dialog expand &#8220;Visual C++&#8221; and then select &#8220;General.&#8221; The right side of the dialog will display a list of all the general project types. Select &#8220;Makefile Project&#8221; from the list of project types. Provide a name for the project and set the location on disk where you wish the project to be saved. Be sure not to check &#8220;Create directory for solution&#8221;, as this will create an extra level of directories that is just confusing. Click the &#8220;OK&#8221; button and you will be presented with the &#8220;Makefile Application Wizard.&#8221; Simply press the &#8220;Finish&#8221; button on the first page of the wizard.</p>
<p>Once the project has been created and opened, set the NMake Configuration Properties for the project as shown below. In the &#8220;Solution Explorer&#8221; right-click on the name of your project. Select &#8220;Properties&#8230;&#8221; from the context menu. On the property pages dialog select &#8220;Configuration Properties&#8221; and &#8220;NMake&#8221; on the left side tree control. On the right side, enter the following information, making sure to set the properties for both the debug and release configurations.</p>
<p>Release Configuration Settings</p>
<p>General<br />
&#8212;&#8212;-<br />
Build Command Line &#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;. nmake release-all<br />
Rebuild All Commaond Line &#8230;&#8230;&#8230;&#8230;&#8230; nmake release-clean release-all<br />
Clean Command Line &#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;. nmake release-clean<br />
Output &#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;. foo.exe</p>
<p>IntelliSense<br />
&#8212;&#8212;&#8212;&#8212;<br />
Common Language Runtime Support &#8230;&#8230;&#8230; No Common Language Runtime support<br />
Preprocessor Definitions &#8230;&#8230;&#8230;&#8230;&#8230;. WIN32;NDEBUG;UNICODE;QT_LARGEFILE_SUPPORT;QT_DLL;<br />
                                          QT_GUI_LIB;QT_CORE_LIB;QT_THREAD_SUPPORT<br />
Include Search Path &#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230; &#8220;c:/qt-win-opensource-src-4.1.0/include/QtCore&#8221;;<br />
                                          &#8220;c:/qt-win-opensource-src-4.1.0/include/QtGui&#8221;;<br />
                                          &#8220;c:/qt-win-opensource-src-4.1.0/include&#8221;;<br />
                                          &#8220;c:/qt-win-opensource-src-4.1.0/include/ActiveQt&#8221;;<br />
                                          &#8220;c:/qt-win-opensource-src-4.1.0/mkspecs/win32-msvc2005&#8243;<br />
Forced Includes &#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;.<br />
Assembly Search Path &#8230;&#8230;&#8230;&#8230;&#8230;&#8230;..<br />
Forced Using Assemblies &#8230;&#8230;&#8230;&#8230;&#8230;..<br />
Debug Configuration Settings</p>
<p>General<br />
&#8212;&#8212;-<br />
Build Command Line &#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;. nmake debug-all<br />
Rebuild All Commaond Line &#8230;&#8230;&#8230;&#8230;&#8230; nmake debug-clean debug-all<br />
Clean Command Line &#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;. nmake debug-clean<br />
Output &#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;. food.exe</p>
<p>IntelliSense<br />
&#8212;&#8212;&#8212;&#8212;<br />
Common Language Runtime Support &#8230;&#8230;&#8230; No Common Language Runtime support<br />
Preprocessor Definitions &#8230;&#8230;&#8230;&#8230;&#8230;. WIN32;_DEBUG;UNICODE;QT_LARGEFILE_SUPPORT;QT_DLL;<br />
                                          QT_GUI_LIB;QT_CORE_LIB;QT_THREAD_SUPPORT<br />
Include Search Path &#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230; &#8220;c:/qt-win-opensource-src-4.1.0/include/QtCore&#8221;;<br />
                                          &#8220;c:/qt-win-opensource-src-4.1.0/include/QtGui&#8221;;<br />
                                          &#8220;c:/qt-win-opensource-src-4.1.0/include&#8221;;<br />
                                          &#8220;c:/qt-win-opensource-src-4.1.0/include/ActiveQt&#8221;;<br />
                                          &#8220;c:/qt-win-opensource-src-4.1.0/mkspecs/win32-msvc2005&#8243;<br />
Forced Includes &#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;.<br />
Assembly Search Path &#8230;&#8230;&#8230;&#8230;&#8230;&#8230;..<br />
Forced Using Assemblies &#8230;&#8230;&#8230;&#8230;&#8230;..<br />
QMake Project Settings</p>
<p>Create a project file called &#8220;foo.pro&#8221; in the directory for your makefile project. Replace the name &#8220;foo.pro&#8221; with the name of your actual application. Place the file in the directory where your Visual Studio project was created. To start with, the contents might look something like this:</p>
<p>CONFIG += qt<br />
TEMPLATE = app<br />
SOURCES += foo.cpp<br />
HEADERS += foo.h<br />
FORMS += foo.ui<br />
You should be off and running now. For more detailed information I would suggest reading the qmake reference manual. You might also want to take a look at the Qt 4.1 tutorials in Qt Assistant. Have fun!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.idevelopsoftware.com/2006/02/howto-use-visual-studio-2005-for-qt-open-source-development/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
