<?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>Kommentare für the-yard.net</title>
	<atom:link href="http://the-yard.net/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://the-yard.net</link>
	<description>fotografie - programmierung - video - design - musik</description>
	<lastBuildDate>Thu, 12 Apr 2012 20:20:22 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Kommentar zu Eröffnung &#8211; Studio der FH Erfurt von Henning Witzel</title>
		<link>http://the-yard.net/2009/03/eroffnung-videostudio-fh-erfurt/comment-page-1/#comment-1170</link>
		<dc:creator>Henning Witzel</dc:creator>
		<pubDate>Thu, 12 Apr 2012 20:20:22 +0000</pubDate>
		<guid isPermaLink="false">http://the-yard.net/wordpress/?p=11#comment-1170</guid>
		<description>Oh man, ist das jetzt schon lange her :-)</description>
		<content:encoded><![CDATA[<p>Oh man, ist das jetzt schon lange her <img src='http://the-yard.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Kommentar zu Formulizer läuft jetzt! von r-dent</title>
		<link>http://the-yard.net/2010/01/formulizer-lauft-jetzt/comment-page-1/#comment-243</link>
		<dc:creator>r-dent</dc:creator>
		<pubDate>Fri, 19 Mar 2010 10:51:04 +0000</pubDate>
		<guid isPermaLink="false">http://the-yard.net/?p=379#comment-243</guid>
		<description>Hi again! 

I totally forgot to mention your the recocnizer problem in itself. Sorry!
There is a way to select a specific recognizer in FormProcessorConrol.cs line 47:
&lt;code&gt;Recognizers.RecognizersEnumerator recoList = new Recognizers().GetEnumerator();
while (recoList.MoveNext())
    foreach (short e in recoList.Current.Languages)
        if (e == 1031) //UK-Engl.: 2057, US-Engl.: 1033, DE: 1031
            this.recognizer = recoList.Current;
            detectFormSketches();
        }&lt;/code&gt;
You will find a list of the language codes &lt;a href=&quot;http://msdn.microsoft.com/en-us/library/0h88fahh%28VS.85%29.aspx&quot; rel=&quot;nofollow&quot;&gt;here&lt;/a&gt;.  Maybe its also necessary to install the &lt;a href=&quot;http://www.microsoft.com/downloads/details.aspx?familyid=080184dd-5e92-4464-b907-10762e9f918b&amp;displaylang=en&quot; rel=&quot;nofollow&quot;&gt;Microsoft Recognizer Pack&lt;/a&gt;. 
Please tell me if some of this works.
Peace! Roman</description>
		<content:encoded><![CDATA[<p>Hi again! </p>
<p>I totally forgot to mention your the recocnizer problem in itself. Sorry!<br />
There is a way to select a specific recognizer in FormProcessorConrol.cs line 47:<br />
<code>Recognizers.RecognizersEnumerator recoList = new Recognizers().GetEnumerator();<br />
while (recoList.MoveNext())<br />
    foreach (short e in recoList.Current.Languages)<br />
        if (e == 1031) //UK-Engl.: 2057, US-Engl.: 1033, DE: 1031<br />
            this.recognizer = recoList.Current;<br />
            detectFormSketches();<br />
        }</code><br />
You will find a list of the language codes <a href="http://msdn.microsoft.com/en-us/library/0h88fahh%28VS.85%29.aspx" rel="nofollow">here</a>.  Maybe its also necessary to install the <a href="http://www.microsoft.com/downloads/details.aspx?familyid=080184dd-5e92-4464-b907-10762e9f918b&amp;displaylang=en" rel="nofollow">Microsoft Recognizer Pack</a>.<br />
Please tell me if some of this works.<br />
Peace! Roman</p>
]]></content:encoded>
	</item>
	<item>
		<title>Kommentar zu Formulizer läuft jetzt! von r-dent</title>
		<link>http://the-yard.net/2010/01/formulizer-lauft-jetzt/comment-page-1/#comment-242</link>
		<dc:creator>r-dent</dc:creator>
		<pubDate>Fri, 19 Mar 2010 09:35:10 +0000</pubDate>
		<guid isPermaLink="false">http://the-yard.net/?p=379#comment-242</guid>
		<description>Hi maciek!

I tried to get it work with a guy from israel last time. We found that there are local differences in converting string to double and the other way around. Because of this, the example xml-file didn´t work as it uses comma instead of dots for decimal place. We fixed this quick and dirty by replacing all the commas in the generated xml file ;-)
A real solution would be to fix the conversion process running on line 94 in FormProcessorControl.cs:
&lt;code&gt;
Point position = this.pageContext.perc2px(new FPoint(
  (float)Convert.ToDouble(xml.GetAttrValue(&quot;x&quot;)),
  (float)Convert.ToDouble(xml.GetAttrValue(&quot;y&quot;))
));
&lt;/code&gt;
I think there must be some setting or parameter to tell the conversion function how to act on the decimal place. Since we figured that out i didn´t had the time to fix it cause i´m writing on my Thesis now. But i hope it helps.
If you get it working, please tell me!

Peace! Roman</description>
		<content:encoded><![CDATA[<p>Hi maciek!</p>
<p>I tried to get it work with a guy from israel last time. We found that there are local differences in converting string to double and the other way around. Because of this, the example xml-file didn´t work as it uses comma instead of dots for decimal place. We fixed this quick and dirty by replacing all the commas in the generated xml file <img src='http://the-yard.net/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /><br />
A real solution would be to fix the conversion process running on line 94 in FormProcessorControl.cs:<br />
<code><br />
Point position = this.pageContext.perc2px(new FPoint(<br />
  (float)Convert.ToDouble(xml.GetAttrValue("x")),<br />
  (float)Convert.ToDouble(xml.GetAttrValue("y"))<br />
));<br />
</code><br />
I think there must be some setting or parameter to tell the conversion function how to act on the decimal place. Since we figured that out i didn´t had the time to fix it cause i´m writing on my Thesis now. But i hope it helps.<br />
If you get it working, please tell me!</p>
<p>Peace! Roman</p>
]]></content:encoded>
	</item>
	<item>
		<title>Kommentar zu Formulizer läuft jetzt! von maciek</title>
		<link>http://the-yard.net/2010/01/formulizer-lauft-jetzt/comment-page-1/#comment-241</link>
		<dc:creator>maciek</dc:creator>
		<pubDate>Fri, 19 Mar 2010 09:09:27 +0000</pubDate>
		<guid isPermaLink="false">http://the-yard.net/?p=379#comment-241</guid>
		<description>Will this solution work with Windows 7 32/64 and Polish language recognition?
I tried and get exception on form processing. I&#039;m .net programmer so if you could give me some advice i&#039;ll be thankfull. Software is really great.</description>
		<content:encoded><![CDATA[<p>Will this solution work with Windows 7 32/64 and Polish language recognition?<br />
I tried and get exception on form processing. I&#8217;m .net programmer so if you could give me some advice i&#8217;ll be thankfull. Software is really great.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Kommentar zu Formulizer läuft jetzt! von shoRdje</title>
		<link>http://the-yard.net/2010/01/formulizer-lauft-jetzt/comment-page-1/#comment-238</link>
		<dc:creator>shoRdje</dc:creator>
		<pubDate>Wed, 10 Mar 2010 15:23:58 +0000</pubDate>
		<guid isPermaLink="false">http://the-yard.net/?p=379#comment-238</guid>
		<description>Dein Englisch ist teilweise amüsant direkt aus dem Deutschen übersetzt :) Das wertet dein Tutorial unheimlich auf :D

Aber sonst sehr fein! Ich hatte irgendwann mal nebenbei von dem Projekt mitbekommen.. Freut mich, dass du es ordentlich verwirklichen konntest BOYYY.</description>
		<content:encoded><![CDATA[<p>Dein Englisch ist teilweise amüsant direkt aus dem Deutschen übersetzt <img src='http://the-yard.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Das wertet dein Tutorial unheimlich auf <img src='http://the-yard.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>Aber sonst sehr fein! Ich hatte irgendwann mal nebenbei von dem Projekt mitbekommen.. Freut mich, dass du es ordentlich verwirklichen konntest BOYYY.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Kommentar zu Soytuaire von Andreas</title>
		<link>http://the-yard.net/2009/10/soytuaire/comment-page-1/#comment-220</link>
		<dc:creator>Andreas</dc:creator>
		<pubDate>Thu, 04 Feb 2010 17:56:41 +0000</pubDate>
		<guid isPermaLink="false">http://the-yard.net/?p=335#comment-220</guid>
		<description>Hi Roman , 

sehr schön - Mousezeiger bewegen nicht vergessen 

Andreas</description>
		<content:encoded><![CDATA[<p>Hi Roman , </p>
<p>sehr schön &#8211; Mousezeiger bewegen nicht vergessen </p>
<p>Andreas</p>
]]></content:encoded>
	</item>
	<item>
		<title>Kommentar zu DMIII Projekt 2 Abgeschlossen von Vollms</title>
		<link>http://the-yard.net/2009/05/future-home-dmiii-projekt-2-abgeschlossen/comment-page-1/#comment-26</link>
		<dc:creator>Vollms</dc:creator>
		<pubDate>Thu, 07 May 2009 08:38:44 +0000</pubDate>
		<guid isPermaLink="false">http://the-yard.net/?p=197#comment-26</guid>
		<description>Cooles Zeuch. Wir machen übrigens auch Emotionsschätzung in Ilmenau. Nur mal so.</description>
		<content:encoded><![CDATA[<p>Cooles Zeuch. Wir machen übrigens auch Emotionsschätzung in Ilmenau. Nur mal so.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Kommentar zu Digitale Medien 3 von Roland Hummel</title>
		<link>http://the-yard.net/2009/04/digitale-medien-3/comment-page-1/#comment-24</link>
		<dc:creator>Roland Hummel</dc:creator>
		<pubDate>Sun, 26 Apr 2009 14:58:52 +0000</pubDate>
		<guid isPermaLink="false">http://the-yard.net/?p=156#comment-24</guid>
		<description>Hi, 

hatte dich auf der Einweihungsparty in Erfurt wiedergetroffen, Du hattest mal von mir ein Photo am Klavier geschossen. Du meintest, ich würde das hier finden. Fragt sich nur: Wo? :)

Für eine helfende Ino an meine Mailadresse wäre ich sehr dankbar!

Gruß
Roland</description>
		<content:encoded><![CDATA[<p>Hi, </p>
<p>hatte dich auf der Einweihungsparty in Erfurt wiedergetroffen, Du hattest mal von mir ein Photo am Klavier geschossen. Du meintest, ich würde das hier finden. Fragt sich nur: Wo? <img src='http://the-yard.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Für eine helfende Ino an meine Mailadresse wäre ich sehr dankbar!</p>
<p>Gruß<br />
Roland</p>
]]></content:encoded>
	</item>
	<item>
		<title>Kommentar zu Digitale Medien 3 von Chillfried</title>
		<link>http://the-yard.net/2009/04/digitale-medien-3/comment-page-1/#comment-14</link>
		<dc:creator>Chillfried</dc:creator>
		<pubDate>Tue, 14 Apr 2009 20:59:16 +0000</pubDate>
		<guid isPermaLink="false">http://the-yard.net/?p=156#comment-14</guid>
		<description>Haste ja wieder fein hin bekommen ;-)</description>
		<content:encoded><![CDATA[<p>Haste ja wieder fein hin bekommen <img src='http://the-yard.net/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Kommentar zu Eröffnung &#8211; Studio der FH Erfurt von Bob</title>
		<link>http://the-yard.net/2009/03/eroffnung-videostudio-fh-erfurt/comment-page-1/#comment-4</link>
		<dc:creator>Bob</dc:creator>
		<pubDate>Tue, 31 Mar 2009 14:42:07 +0000</pubDate>
		<guid isPermaLink="false">http://the-yard.net/wordpress/?p=11#comment-4</guid>
		<description>Phat!</description>
		<content:encoded><![CDATA[<p>Phat!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Object Caching 383/393 objects using disk: basic

Served from: the-yard.net @ 2012-05-22 08:32:26 -->
