<?xml version="1.0" encoding="utf-8" ?>

<rss version="2.0" 
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:admin="http://webns.net/mvcb/"
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
   xmlns:wfw="http://wellformedweb.org/CommentAPI/"
   xmlns:content="http://purl.org/rss/1.0/modules/content/"
   >
<channel>
    <title>nothingtwoc.com - Software-Development</title>
    <link>http://nothingtwoc.com/</link>
    <description>Ein Schiff im Hafen ist sicher. Aber das ist nicht wofür Schiffe gebaut wurden.</description>
    <dc:language>en</dc:language>
    <generator>Serendipity 1.3.1 - http://www.s9y.org/</generator>
    <pubDate>Wed, 15 Apr 2009 08:56:42 GMT</pubDate>

    <image>
        <url>http://nothingtwoc.com/templates/default/img/s9y_banner_small.png</url>
        <title>RSS: nothingtwoc.com - Software-Development - Ein Schiff im Hafen ist sicher. Aber das ist nicht wofür Schiffe gebaut wurden.</title>
        <link>http://nothingtwoc.com/</link>
        <width>100</width>
        <height>21</height>
    </image>

<item>
    <title>Developing Infopath 2003 Forms with Infopath 2007(with code behind) ... is  not possible</title>
    <link>http://nothingtwoc.com/archives/103-Developing-Infopath-2003-Forms-with-Infopath-2007with-code-behind-...-is-not-possible.html</link>
            <category>Software-Development</category>
    
    <comments>http://nothingtwoc.com/archives/103-Developing-Infopath-2003-Forms-with-Infopath-2007with-code-behind-...-is-not-possible.html#comments</comments>
    <wfw:comment>http://nothingtwoc.com/wfwcomment.php?cid=103</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://nothingtwoc.com/rss.php?version=2.0&amp;type=comments&amp;cid=103</wfw:commentRss>
    

    <author>nospam@example.com (Richie)</author>
    <content:encoded>
    
&lt;p&gt;You might want to develop a form with InfoPath 2007 (because it&#039;s more comfortable) and then use it in InfoPath 2003. Therefore you can save the form in the 2003-format in InfoPath 2007. However, when you try to open your form in 2003 you&#039;ll get the error message:&lt;/p&gt;&lt;span id=&quot;ctl00_MainContentPlaceholder_ctl01_ctl00_lblEntry&quot;&gt;&lt;/span&gt;&lt;h4 class=&quot;beTitle&quot; id=&quot;subjcns!237C3DEA7120098B!604&quot;&gt;Error
- InfoPath cannot open the selected form because of an error in the
form&#039;s code. A floating attribute may not be passed as the context node
for an XSLT transform or an XPath query.&lt;/h4&gt;&lt;p&gt;The german error message is:&lt;/p&gt;&lt;p&gt;&lt;b&gt;Das ausgewählte Formular kann aufgrund eines Fehlers im Code nicht geöffnet werden.&lt;br /&gt;Ein unverankertes Attribut kann nicht als Kontextknoten für eine XSLT-Transformation oder eine XPath-Abfrage weitergegeben werden.&lt;/b&gt;&lt;/p&gt;&lt;p&gt;The form you just developed can only be opened under the following conditions:&lt;/p&gt;Have InfoPath 2003 and .NET 2.0, &lt;u&gt;BUT NOT&lt;/u&gt; InfoPath 2007 installed on the machine.&lt;p&gt;So you have the following possibilties to develop a InfoPath 2003 with &lt;/p&gt;&lt;ul&gt;&lt;li&gt;With InfoPath 2003, VSTA in JScript/VBScript&lt;/li&gt;&lt;li&gt;With InfoPath 2003, Visual Studio 2003, Infopath 2003 SDK (which comes with a template for VS 2003) in C#/Visual Basic&lt;/li&gt;&lt;/ul&gt;This is what I figured out, corrections welcome!&lt;br /&gt;&lt;p /&gt;
 
    </content:encoded>

    <pubDate>Wed, 15 Apr 2009 10:56:42 +0200</pubDate>
    <guid isPermaLink="false">http://nothingtwoc.com/archives/103-guid.html</guid>
    
</item>
<item>
    <title>Infopath: Iterating through a repeating table that is bound to a Sharepoint-List</title>
    <link>http://nothingtwoc.com/archives/89-Infopath-Iterating-through-a-repeating-table-that-is-bound-to-a-Sharepoint-List.html</link>
            <category>Software-Development</category>
    
    <comments>http://nothingtwoc.com/archives/89-Infopath-Iterating-through-a-repeating-table-that-is-bound-to-a-Sharepoint-List.html#comments</comments>
    <wfw:comment>http://nothingtwoc.com/wfwcomment.php?cid=89</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://nothingtwoc.com/rss.php?version=2.0&amp;type=comments&amp;cid=89</wfw:commentRss>
    

    <author>nospam@example.com (Richie)</author>
    <content:encoded>
    
this is how you do it with Infopath 2007 and Microsoft Office Server 2007 (MOSS2007) or Windows Sharepoint Server 3.0. It&#039;s not valid for Infopath 2003.
I&#039;ve added comments to the code, so if you are a little familiar with c# it should be quite self explanatory. If you have questions just ask.&lt;br /&gt;&lt;br /&gt;
&lt;pre name=&quot;code&quot; class=&quot;c#&quot;&gt;
public void test1()
      {
          //We&#039;re creating a XpathNodeIterator here. Each Node in the XpathNavigator-Collection nodes1 represents one row of the sharepoint list
          XPathNodeIterator nodes1 = DataSources[&quot;string-name of the sharepointlist-data-connection&quot;;, NamespaceManager);         


          foreach (XPathNavigator n in nodes1)       
	  {   	// The field/column of each single row of the list you want is represented as an attribute
    	  MessageBox.Show(n.GetAttribute(&quot;field-/column-name&quot;, nodes1.Current.NamespaceURI));
	  }

&lt;/pre&gt;
Replace the Messagebox.Show with any action that you need to.  
    </content:encoded>

    <pubDate>Wed, 12 Nov 2008 11:16:27 +0100</pubDate>
    <guid isPermaLink="false">http://nothingtwoc.com/archives/89-guid.html</guid>
    <category>code</category>
<category>infopath</category>
<category>iterate</category>
<category>repeating table</category>

</item>

</channel>
</rss>