<?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>3dz Soft</title>
	<atom:link href="http://3dz-soft.com/feed" rel="self" type="application/rss+xml" />
	<link>http://3dz-soft.com</link>
	<description>Utilities like Emoticon Status for Yahoo Mesenger, Illyrium Google Translate Utility</description>
	<lastBuildDate>Sat, 04 Sep 2010 12:12:11 +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>Changing Yahoo Messenger&#8217;s status using C#</title>
		<link>http://3dz-soft.com/code-snippets/changing-yahoo-messengers-status-using-c/.?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=changing-yahoo-messengers-status-using-c</link>
		<comments>http://3dz-soft.com/code-snippets/changing-yahoo-messengers-status-using-c/.#comments</comments>
		<pubDate>Tue, 31 Aug 2010 18:16:29 +0000</pubDate>
		<dc:creator>edy_3dz</dc:creator>
				<category><![CDATA[Code snippets]]></category>
		<category><![CDATA[Emoticon Status Generator]]></category>
		<category><![CDATA[snippet]]></category>
		<category><![CDATA[yahoo status]]></category>
		<category><![CDATA[ym]]></category>

		<guid isPermaLink="false">http://3dz-soft.com/?p=177</guid>
		<description><![CDATA[Some people asked me how I change Yahoo Messenger&#8217;s status in my application called Emoticon Status Generator. So I&#8217;ll make public the code snippet that I used to accomplish this. [DllImport(&#34;USER32.DLL&#34;, EntryPoint=&#34;FindWindowA&#34;, CallingConvention=CallingConvention.StdCall)] private static extern IntPtr FindWindow(string sClassName, string sWindowName); [DllImport(&#34;USER32.DLL&#34;, EntryPoint=&#34;PostMessageA&#34;, CallingConvention=CallingConvention.StdCall)] private static extern bool PostMessage(IntPtr hWnd, uint iMsg, long wParam, long [...]]]></description>
			<content:encoded><![CDATA[<p>Some people asked me how I change Yahoo Messenger&#8217;s status in my application called Emoticon Status Generator. So I&#8217;ll make public the code snippet that I used to accomplish this.</p>
<pre class="brush: csharp;">
[DllImport(&quot;USER32.DLL&quot;, EntryPoint=&quot;FindWindowA&quot;,
 CallingConvention=CallingConvention.StdCall)]
private static extern IntPtr FindWindow(string sClassName,
 string sWindowName); 

[DllImport(&quot;USER32.DLL&quot;, EntryPoint=&quot;PostMessageA&quot;,
 CallingConvention=CallingConvention.StdCall)]
private static extern bool PostMessage(IntPtr hWnd, uint iMsg,
 long wParam, long lParam);

void ChangeYahooStatus (string newStatus)
{
 // Get the current signed in user
 RegistryKey keyYahooPager =
 Registry.CurrentUser.OpenSubKey(&quot;Software\\Yahoo\\Pager&quot;);
 string userName = (string)keyYahooPager.GetValue (&quot;Yahoo! User ID&quot;);
 keyYahooPager.Close();

 // Now open the current user's profile and set the new	 status message
 // We have to pass true to OpenSubKey to request write access

 RegistryKey keyYahooCustomMessages =
 Registry.CurrentUser.OpenSubKey (&quot;Software\\Yahoo\\Pager\\profiles\\&quot;
 + userName + &quot;\\Custom Msgs&quot;, true);

 // Set the 5th message, seems like yahoo messenger has the
 //functionality to move the newly set message up as the first one.

 keyYahooCustomMessages.SetValue (&quot;5_W&quot;, newStatus);
 keyYahooCustomMessages.Close ();

 // We are done setting the value in the registry. We now need to notify
 // Yahoo Messenger of this change

 // Find the Messenger window and send it the notification
 // 0x111: WM_COMMAND
 // 0x188: Code 392

 IntPtr hWndY = FindWindow (&quot;YahooBuddyMain&quot;, null);
 PostMessage (hWndY, 0x111, 0x188, 0);
}
</pre>
<p>It should work with Yahoo Messenger 9 and 10, not tested with other versions.<br />
I hope that you&#8217;ll find useful this code snippet in developing some nice piece of software.</pre>
]]></content:encoded>
			<wfw:commentRss>http://3dz-soft.com/code-snippets/changing-yahoo-messengers-status-using-c/./feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nokia Qt SDK Setup &#8211; Online installer error</title>
		<link>http://3dz-soft.com/qt/nokia-qt-sdk-setup-online-installer-error/.?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=nokia-qt-sdk-setup-online-installer-error</link>
		<comments>http://3dz-soft.com/qt/nokia-qt-sdk-setup-online-installer-error/.#comments</comments>
		<pubDate>Tue, 17 Aug 2010 16:29:22 +0000</pubDate>
		<dc:creator>edy_3dz</dc:creator>
				<category><![CDATA[QT]]></category>
		<category><![CDATA[Installer Error]]></category>
		<category><![CDATA[Nokia Qt SDK]]></category>

		<guid isPermaLink="false">http://3dz-soft.com/?p=164</guid>
		<description><![CDATA[I started learning QT, and today I wanted to install Nokia Qt SDK, so I could build applications for my Symbian device. But I faced a little problem: the online installer was giving me the folowing error, over and over again: Error during installation process: The installer was not able to get the old path [...]]]></description>
			<content:encoded><![CDATA[<p>I started learning QT, and today I wanted to install Nokia Qt SDK, so I could build applications for my Symbian device. But I faced a little problem: the online installer was giving me the folowing error, over and over again:</p>
<p>Error during installation process:<br />
The installer was not able to get the old path from \NokiaQtSDK\Symbian\SDK\bin\qmake.exe.(maybe it is broken or removed) It tried to patch the Qt binaries, but all other files in Qt are unpatched.<br />
This could result in a broken Qt version.<br />
Retry/Ignore/Cancel</p>
<p><a href="http://3dz-soft.com/wp-content/uploads/2010/08/qterror.png"><img class="size-full wp-image-165 alignnone" title="qterror" src="http://3dz-soft.com/wp-content/uploads/2010/08/qterror.png" alt="Nokia Qt SDK Online installer error" width="500" height="179" /></a></p>
<p>Afer spending some time searchig what is the cause of this error, reading on the QT bug tracker that it is due to bad internet conectivity (not in my case <img src='http://3dz-soft.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> ), I saw that someone suggested that this error appears beacause of the antivirus. So I disabled my antivirus, tried again, and this time worked like a charm.</p>
<p>So if you are having trouble installing Nokia  Qt SDK using the online installer, disabling your antivirus will do the trick <img src='http://3dz-soft.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://3dz-soft.com/qt/nokia-qt-sdk-setup-online-installer-error/./feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Emoticon Status Generator &#8211; Web Version</title>
		<link>http://3dz-soft.com/emoticon-status-generator/emoticon-status-generator-web-version/.?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=emoticon-status-generator-web-version</link>
		<comments>http://3dz-soft.com/emoticon-status-generator/emoticon-status-generator-web-version/.#comments</comments>
		<pubDate>Tue, 03 Aug 2010 15:56:33 +0000</pubDate>
		<dc:creator>edy_3dz</dc:creator>
				<category><![CDATA[Emoticon Status Generator]]></category>

		<guid isPermaLink="false">http://3dz-soft.com/?p=157</guid>
		<description><![CDATA[Finally I implemented the web version of Emoticon Status Generator. It&#8217;s still in an early form, so there will be lots of improvements in the near future. You can find it at this link. And I want to say sorry for the lack of activity in the last few months, it was the most beautiful [...]]]></description>
			<content:encoded><![CDATA[<p>Finally I implemented the web version of Emoticon Status Generator. It&#8217;s still in an early form, so there will be lots of improvements in the near future. You can find it at this <a title="link" href="http://3dz-soft.com/emoticon-status-generator-web-version" target="_self">link</a>.<br />
And I want to say sorry for the lack of activity in the last few months, it was the most beautiful period of my life, I might say <img src='http://3dz-soft.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  But after so much fun, it is time to get back to work.</p>
<p>Cheers!</p>
]]></content:encoded>
			<wfw:commentRss>http://3dz-soft.com/emoticon-status-generator/emoticon-status-generator-web-version/./feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Emoticon Statuses request here!</title>
		<link>http://3dz-soft.com/emoticon-status-generator/emoticon-statuses-request-here/.?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=emoticon-statuses-request-here</link>
		<comments>http://3dz-soft.com/emoticon-status-generator/emoticon-statuses-request-here/.#comments</comments>
		<pubDate>Sun, 21 Feb 2010 12:53:50 +0000</pubDate>
		<dc:creator>edy_3dz</dc:creator>
				<category><![CDATA[Emoticon Status Generator]]></category>

		<guid isPermaLink="false">http://3dz-soft.com/?p=97</guid>
		<description><![CDATA[I saw that people were making requests on various sites. So here I will complete requests made by anyone. Leave a comment with your request, and I&#8217;ll fill them as fast as possible.]]></description>
			<content:encoded><![CDATA[<p>I saw that people were making requests on various sites. So here I will complete requests made by anyone. Leave a comment with your request, and I&#8217;ll fill them as fast as possible.</p>
]]></content:encoded>
			<wfw:commentRss>http://3dz-soft.com/emoticon-status-generator/emoticon-statuses-request-here/./feed</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Google Wave invitations giveaway</title>
		<link>http://3dz-soft.com/misc/google-wave-invitations-giveaway/.?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=google-wave-invitations-giveaway</link>
		<comments>http://3dz-soft.com/misc/google-wave-invitations-giveaway/.#comments</comments>
		<pubDate>Tue, 16 Feb 2010 17:09:02 +0000</pubDate>
		<dc:creator>edy_3dz</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[google wave]]></category>
		<category><![CDATA[invitations]]></category>

		<guid isPermaLink="false">http://3dz-soft.com/?p=93</guid>
		<description><![CDATA[I have a few Google Wave invitation to offer, so just send me your GMail address, and I&#8217;ll send you the invite. Don&#8217;t be shy. And quoting Doctor Wave: &#8220;Invitations will not be sent immediately. We have a lot of stamps to lick.&#8221;]]></description>
			<content:encoded><![CDATA[<p>I have a few Google Wave invitation to offer, so just send me your GMail address, and I&#8217;ll send you the invite. Don&#8217;t be shy. And quoting Doctor Wave: &#8220;Invitations will not be sent immediately. We have a lot of stamps to lick.&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://3dz-soft.com/misc/google-wave-invitations-giveaway/./feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hello world!</title>
		<link>http://3dz-soft.com/blog/hello-world/.?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=hello-world</link>
		<comments>http://3dz-soft.com/blog/hello-world/.#comments</comments>
		<pubDate>Thu, 11 Feb 2010 18:58:10 +0000</pubDate>
		<dc:creator>edy_3dz</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://3dz-soft.com/?p=1</guid>
		<description><![CDATA[I bought a domain and I&#8217;m building a new site Meanwhile, I&#8217;m planning to get the driver license and I&#8217;m working at a screenshot utility. Until it will be done, I&#8217;ll upload my previous programs and some other stuff too.]]></description>
			<content:encoded><![CDATA[<p>I bought a domain and I&#8217;m building a new site <img src='http://3dz-soft.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  Meanwhile, I&#8217;m planning to get the driver license and I&#8217;m working at a screenshot utility. Until it will be done, I&#8217;ll upload my previous programs and some other stuff too.</p>
]]></content:encoded>
			<wfw:commentRss>http://3dz-soft.com/blog/hello-world/./feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
