<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" 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/"><channel><title>Passing Data into a Form: Input Parameters</title><link>http://blogs.msdn.com/infopath/archive/2007/02/26/passing-data-into-a-form-input-parameters.aspx</link><description>This blog article discusses a new feature of Microsoft InfoPath 2007 that makes it possible to pass data into an InfoPath form at load time. A typical example would be retrieving records from a database for a particular user. At load time a ‘userID’ can</description><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>re: Passing Data into a Form: Input Parameters</title><link>http://blogs.msdn.com/infopath/archive/2007/02/26/passing-data-into-a-form-input-parameters.aspx#2798534</link><pubDate>Tue, 22 May 2007 22:27:49 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:2798534</guid><dc:creator>ramkumar1910</dc:creator><description>&lt;p&gt;Great introduction!&lt;/p&gt;
&lt;p&gt;it will be very helpful if you could write a bit more on how to use the nput param. &lt;/p&gt;
&lt;p&gt;For exampe:&lt;/p&gt;
&lt;p&gt;how to pass the input param(student id) &amp;nbsp;to the web service to get the details of one student and display in the form. Thanks&lt;/p&gt;
</description></item><item><title>re: Passing Data into a Form: Input Parameters</title><link>http://blogs.msdn.com/infopath/archive/2007/02/26/passing-data-into-a-form-input-parameters.aspx#2799005</link><pubDate>Tue, 22 May 2007 22:57:49 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:2799005</guid><dc:creator>Scott Heim</dc:creator><description>&lt;p&gt;Hi ramkumar1910,&lt;/p&gt;
&lt;p&gt;Here is some sample code that I tested on the Loading event - note this does not have any error handling though:&lt;/p&gt;
&lt;p&gt;string strCustID = e.InputParameters[&amp;quot;CustID&amp;quot;];&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DataSource dsCustomers = this.DataSources[&amp;quot;GetSelectedCustomer&amp;quot;];&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;XmlNamespaceManager ns = this.NamespaceManager;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;XPathNavigator xnCustomers = dsCustomers.CreateNavigator();&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;XPathNavigator xnCustID = xnCustomers.SelectSingleNode(&amp;quot;/dfs:myFields/dfs:queryFields/tns:GetSelectedCustomer/tns:CustID&amp;quot;, ns);&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;xnCustID.SetValue(strCustID);&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;dsCustomers.QueryConnection.Execute();&lt;/p&gt;
&lt;p&gt;In this sample, I had a secondary data connection called GetSelectedCustomer that takes a CustomerID to pull information for just that customer. I then use the InputParameter to set the &amp;quot;queryField&amp;quot; value of my data connection and then execute that connection.&lt;/p&gt;
&lt;p&gt;I hope this helps!&lt;/p&gt;
&lt;p&gt;Scott&lt;/p&gt;
</description></item><item><title>re: Passing Data into a Form: Input Parameters</title><link>http://blogs.msdn.com/infopath/archive/2007/02/26/passing-data-into-a-form-input-parameters.aspx#3124774</link><pubDate>Wed, 06 Jun 2007 23:21:54 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:3124774</guid><dc:creator>BobC</dc:creator><description>&lt;p&gt;Is there a way to set a parameter at the content type or form library level? &amp;nbsp;I have tried adding a parm in the List Content Type Advanced settings like so:&lt;/p&gt;
&lt;p&gt;/FormServerTemplates/MJWorkRequest2007.xsn?View=HelpDesk&lt;/p&gt;
&lt;p&gt;but wss seems to lose the ability to open the form since .xsn is no longer at the end of the string.&lt;/p&gt;
</description></item><item><title>re: Passing Data into a Form: Input Parameters</title><link>http://blogs.msdn.com/infopath/archive/2007/02/26/passing-data-into-a-form-input-parameters.aspx#4235515</link><pubDate>Sun, 05 Aug 2007 06:24:27 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:4235515</guid><dc:creator>swaven</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I have a question regarding connecting two infopaths.&lt;/p&gt;
&lt;p&gt;How can we connect two infopaths through a common column?&lt;/p&gt;
&lt;p&gt;I have an infopath with CustID1 and this infopath contains another file &lt;/p&gt;
&lt;p&gt;attachment(infopath) and I have to popup the second infopath with the same &lt;/p&gt;
&lt;p&gt;CustID1.&lt;/p&gt;
&lt;p&gt;I tried the following code in the OnLoad event.&lt;/p&gt;
&lt;p&gt;try&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; string strCustID = e.InputParameters[&amp;quot;CustID&amp;quot;];&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; DataSource dsCustomers = this.DataSources[&amp;quot;GetCustID&amp;quot;];&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; XmlNamespaceManager ns = this.NamespaceManager;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; XPathNavigator xnCustomer = dsCustomers.CreateNavigator();&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; XPathNavigator xnCustomer = xnCustomer.SelectSingleNode(&amp;quot;/dfs:myFields/dfs:queryFields/tns:Customers/tns:CustomerID&amp;quot;);&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; xnCustomer.SetValue(CustomerID);&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; dsCustomer.QueryConnection.Execute();&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; catch (exception e)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; messagebox.show(e.message,&amp;quot;Error&amp;quot;);&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;/p&gt;
&lt;p&gt;but encountered the following error:&lt;/p&gt;
&lt;p&gt;System.Collections.Generic.KeyNotFoundException was unhandled by user code&lt;/p&gt;
&lt;p&gt; Message=&amp;quot;The given key was not present in the dictionary.&amp;quot;&lt;/p&gt;
&lt;p&gt; Source=&amp;quot;mscorlib&amp;quot;&lt;/p&gt;
&lt;p&gt; StackTrace:&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;at System.ThrowHelper.ThrowKeyNotFoundException()&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;at System.Collections.Generic.Dictionary`2.get_Item(TKey key)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;at Microsoft.Office.InfoPath.Internal.ReadOnlyDictionary`2.System.Collections.Generic.IDictionary&amp;lt;K,V&amp;gt;.get_Item(K key)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;at Customer_Checklist.FormCode.FormEvents_Loading(Object sender, LoadingEventArgs e)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;at Microsoft.Office.InfoPath.Internal.FormEventsHost.OnLoad(DocReturnEvent pEvent)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;at Microsoft.Office.Interop.InfoPath.SemiTrust._XDocumentEventSink2_SinkHelper.OnLoad(DocReturnEvent pEvent)&lt;/p&gt;
&lt;p&gt;Is this the process for transferring the value of a field from one infopath to another infopath. &amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thanks in Advance&lt;/p&gt;
</description></item><item><title>re: Passing Data into a Form: Input Parameters</title><link>http://blogs.msdn.com/infopath/archive/2007/02/26/passing-data-into-a-form-input-parameters.aspx#4788054</link><pubDate>Thu, 06 Sep 2007 17:49:14 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:4788054</guid><dc:creator>zullu</dc:creator><description>&lt;p&gt;Hi Scott,&lt;/p&gt;
&lt;p&gt;Your sample code was of great help to understand few more concepts in InfoPath 2003.&lt;/p&gt;
&lt;p&gt;Thanks again for this.&lt;/p&gt;
&lt;p&gt;I have another small question.&lt;/p&gt;
&lt;p&gt;Can we create a secondary data connection with a filter criteria set as parameter to receive a value of a sharepoint list column for the current record pointer.&lt;/p&gt;
&lt;p&gt;Thanks for all your help,&lt;/p&gt;
&lt;p&gt;zullu&lt;/p&gt;
</description></item><item><title>re: Passing Data into a Form: Input Parameters</title><link>http://blogs.msdn.com/infopath/archive/2007/02/26/passing-data-into-a-form-input-parameters.aspx#4880898</link><pubDate>Wed, 12 Sep 2007 18:30:22 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:4880898</guid><dc:creator>zullu</dc:creator><description>&lt;p&gt;I was able to figure out my stuff through a web service for the second alternative way. &lt;/p&gt;
&lt;p&gt;Thanks to responses from David Dean, Sr. Member Technical Staff, Insource Technology Corp. and Kit Kai's Blog post at the below url: &lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" target="_new" href="http://community.sgdotnet.org/blogs/kitkai/pages/Consuming-Web-Servic"&gt;http://community.sgdotnet.org/blogs/kitkai/pages/Consuming-Web-Servic&lt;/a&gt;... &lt;/p&gt;
&lt;p&gt;which helped me to resolve my issue quickly. &lt;/p&gt;
&lt;p&gt;Thaks again.&lt;/p&gt;
&lt;p&gt;zullu&lt;/p&gt;
</description></item><item><title>re: Passing Data into a Form: Input Parameters</title><link>http://blogs.msdn.com/infopath/archive/2007/02/26/passing-data-into-a-form-input-parameters.aspx#4925133</link><pubDate>Sat, 15 Sep 2007 10:57:55 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:4925133</guid><dc:creator>shamrez</dc:creator><description>&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;Thanks for this informative article. I have a question. If I pass parameters from one InfoPath form to another, I know that is possible but what If I want to send data back to the first InfoPath form. How will I do that? I am using web forms and my InfoPath template is hosted in a forms library in SharePoint. I want to open a new InfoPath form from my xsn template. After doing some processing in the newly opened form I would like to send the processed data back to the original form that is hosted in SharePoint. Can this be done? Plz help!&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;Sham&lt;/p&gt;
</description></item><item><title>re: Passing Data into a Form: Input Parameters</title><link>http://blogs.msdn.com/infopath/archive/2007/02/26/passing-data-into-a-form-input-parameters.aspx#4925172</link><pubDate>Sat, 15 Sep 2007 11:02:18 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:4925172</guid><dc:creator>shamrez</dc:creator><description>&lt;p&gt;Some more info! I created an aspx page that has a xmlformview control and this page is hosted in SharePoint (main site on port 80). I send some parameters in querystring to this aspx page from an InfoPath form hosted in SharePoint. I do some business processing and now I want to send the data back from this aspx page to the InfoPath form opened from SharePoint. How will we do this? Is it possible at all? Please help!&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;Sham&lt;/p&gt;
</description></item><item><title>re: Passing Data into a Form: Input Parameters</title><link>http://blogs.msdn.com/infopath/archive/2007/02/26/passing-data-into-a-form-input-parameters.aspx#5401854</link><pubDate>Thu, 11 Oct 2007 17:32:40 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5401854</guid><dc:creator>AD28</dc:creator><description>&lt;p&gt;Is there any way we could see the VB version of the InfoPath 2003 SP1 which is displayed in C# above? &lt;/p&gt;
&lt;p&gt;I am very unfamiliar with syntax of both, but need to have this functionality written in VB however.&lt;/p&gt;
&lt;p&gt;I would be so thankful for any help. :)&lt;/p&gt;
</description></item><item><title>re: Passing Data into a Form: Input Parameters</title><link>http://blogs.msdn.com/infopath/archive/2007/02/26/passing-data-into-a-form-input-parameters.aspx#5401877</link><pubDate>Thu, 11 Oct 2007 17:39:18 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5401877</guid><dc:creator>AD28</dc:creator><description>&lt;p&gt;I should say VBScript.........&lt;/p&gt;
</description></item><item><title>re: Passing Data into a Form: Input Parameters</title><link>http://blogs.msdn.com/infopath/archive/2007/02/26/passing-data-into-a-form-input-parameters.aspx#6879357</link><pubDate>Thu, 27 Dec 2007 22:01:29 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:6879357</guid><dc:creator>CraigSchaeferWU</dc:creator><description>&lt;p&gt;From the comments above, it appears that &lt;/p&gt;
&lt;p&gt; &amp;nbsp;XDocument.InputParameters[&amp;quot;x&amp;quot;].Value &lt;/p&gt;
&lt;p&gt;should work with Infopath 2003. &amp;nbsp;However when I implemen this I get the following error:&lt;/p&gt;
&lt;p&gt; &amp;nbsp;The form contains XML that cannot be parsed:&lt;/p&gt;
&lt;p&gt; &amp;nbsp;An invalid character was found in text content.&lt;/p&gt;
&lt;p&gt; &amp;nbsp;Line 1, Position 5&lt;/p&gt;
&lt;p&gt; &amp;nbsp;MSCF&lt;/p&gt;
&lt;p&gt; &amp;nbsp;----^&lt;/p&gt;
&lt;p&gt;I know the code is working becuase it works fine on Infopath 2007 clients. &amp;nbsp;Should this work for infopath 2003?&lt;/p&gt;
</description></item><item><title>re: Passing Data into a Form: Input Parameters</title><link>http://blogs.msdn.com/infopath/archive/2007/02/26/passing-data-into-a-form-input-parameters.aspx#7181765</link><pubDate>Mon, 21 Jan 2008 12:10:55 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:7181765</guid><dc:creator>sakons</dc:creator><description>&lt;p&gt;Hello&lt;/p&gt;
&lt;p&gt;I use infopath 2007 &amp;nbsp;inside sharepoint 2007 and I would like to pass parameters to the form via the querystring but it doesnot work the way you show it - no data enter the controls&lt;/p&gt;
&lt;p&gt;I am posting the url&lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" target="_new" href="http://portal.tec.com/en/Zell/Application/_layouts/FormServer.aspx?year=2005XsnLocation=http://portal.tec.com/en/Zell/Application/ZellApplication/Forms/template.xsn&amp;amp;SaveLocation=http://portal.tec.com/en/Zell/Application/ZellApplication&amp;amp;Source=http://www.tec.com"&gt;http://portal.tec.com/en/Zell/Application/_layouts/FormServer.aspx?year=2005XsnLocation=http://portal.tec.com/en/Zell/Application/ZellApplication/Forms/template.xsn&amp;amp;SaveLocation=http://portal.tec.com/en/Zell/Application/ZellApplication&amp;amp;Source=http://www.tec.com&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;It is a bit different from the your example &amp;nbsp;but its the url I can get out of the new item in the sharepoint list the form is in it&lt;/p&gt;
&lt;p&gt;10x&lt;/p&gt;
&lt;p&gt;Shlomy&lt;/p&gt;
</description></item><item><title>re: Passing Data into a Form: Input Parameters</title><link>http://blogs.msdn.com/infopath/archive/2007/02/26/passing-data-into-a-form-input-parameters.aspx#7185558</link><pubDate>Mon, 21 Jan 2008 19:18:09 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:7185558</guid><dc:creator>sukebeta</dc:creator><description>&lt;p&gt;I am using InfoPath 2003 SP3. I was trying to use JScript to get the input parameter from the URL. My url looks like this:&lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" target="_new" href="http://sharepoint/test/forms/form1.xml?view=Edit"&gt;http://sharepoint/test/forms/form1.xml?view=Edit&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Then on the OnLoad event of the form, I was trying to get the value of parameter &amp;quot;view&amp;quot;:&lt;/p&gt;
&lt;p&gt;var viewValue = eventObj.XDocument.InputParameters[&amp;quot;view&amp;quot;].value;&lt;/p&gt;
&lt;p&gt;eventObj.XDocument.UI.Alert(viewValue);&lt;/p&gt;
&lt;p&gt;I got an error like this&lt;/p&gt;
&lt;p&gt;A runtime error has occured. do you want to debug? the following error has occured:&lt;/p&gt;
&lt;p&gt;'XDocument.InputParameters.view' is null or not an object&lt;/p&gt;
&lt;p&gt;File: script.js&lt;/p&gt;
&lt;p&gt;Line: 58&lt;/p&gt;
&lt;p&gt;anyone know why it didn't work?&lt;/p&gt;
</description></item><item><title>re: Passing Data into a Form: Input Parameters</title><link>http://blogs.msdn.com/infopath/archive/2007/02/26/passing-data-into-a-form-input-parameters.aspx#7191704</link><pubDate>Tue, 22 Jan 2008 05:11:09 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:7191704</guid><dc:creator>forrestd</dc:creator><description>&lt;p&gt;As it says in the first paragraph, Input Parameters are a new feature for InfoPath 2007.&lt;/p&gt;
</description></item><item><title>re: Passing Data into a Form: Input Parameters</title><link>http://blogs.msdn.com/infopath/archive/2007/02/26/passing-data-into-a-form-input-parameters.aspx#7221048</link><pubDate>Thu, 24 Jan 2008 15:34:05 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:7221048</guid><dc:creator>dkarantonis</dc:creator><description>&lt;p&gt;hi to all,&lt;/p&gt;
&lt;p&gt;i am using the e.InputParameter[&amp;quot;List&amp;quot;] in order to get the list ID from the url and i get the exception &amp;quot;The given key was not present in the dictionary.&amp;quot;. The List exists on the URL (this is a workflow list association form).&lt;/p&gt;
&lt;p&gt;Any ideas?&lt;/p&gt;
</description></item><item><title>re: Passing Data into a Form: Input Parameters</title><link>http://blogs.msdn.com/infopath/archive/2007/02/26/passing-data-into-a-form-input-parameters.aspx#7222501</link><pubDate>Thu, 24 Jan 2008 17:25:39 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:7222501</guid><dc:creator>infopath</dc:creator><description>&lt;p&gt;Hi dkarantonis,&lt;/p&gt;
&lt;p&gt;In this scenario, the &amp;quot;List&amp;quot; parameter is not an &amp;quot;InputParameter&amp;quot; to the form. If you debug this you will see the InputParameter count is zero. I have been unable to find a way to get this from behind the InfoPath form - so you may want to look at trying to get the URL and parsing it from the ASPX page.&lt;/p&gt;
&lt;p&gt;Scott&lt;/p&gt;
</description></item><item><title>re: Passing Data into a Form: Input Parameters</title><link>http://blogs.msdn.com/infopath/archive/2007/02/26/passing-data-into-a-form-input-parameters.aspx#7236712</link><pubDate>Fri, 25 Jan 2008 11:35:44 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:7236712</guid><dc:creator>dkarantonis</dc:creator><description>&lt;p&gt;Hi Scott&lt;/p&gt;
&lt;p&gt;i have commented on your &amp;quot;Submitting to 'this' document library&amp;quot; article.&lt;/p&gt;
&lt;p&gt;thanks again&lt;/p&gt;
</description></item><item><title>re: Passing Data into a Form: Input Parameters</title><link>http://blogs.msdn.com/infopath/archive/2007/02/26/passing-data-into-a-form-input-parameters.aspx#7837836</link><pubDate>Thu, 21 Feb 2008 17:05:56 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:7837836</guid><dc:creator>JohnCHill</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;I understand the parameter piece of this but I cannot figure out how query or filter the data to only show records that match the parameter criteria. Can you help or point me to some other documentation?&lt;/p&gt;
&lt;p&gt;Thanks!&lt;/p&gt;
&lt;p&gt;John&lt;/p&gt;
</description></item><item><title>State Management in Infopath Forms</title><link>http://blogs.msdn.com/infopath/archive/2007/02/26/passing-data-into-a-form-input-parameters.aspx#8642783</link><pubDate>Mon, 23 Jun 2008 19:37:24 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8642783</guid><dc:creator>Sundar Narasiman</dc:creator><description>&lt;p&gt;I&amp;amp;#39;m currently working on a project that involves the modernization of lotus notes application to&lt;/p&gt;
</description></item><item><title>re: Passing Data into a Form: Input Parameters</title><link>http://blogs.msdn.com/infopath/archive/2007/02/26/passing-data-into-a-form-input-parameters.aspx#8897960</link><pubDate>Tue, 26 Aug 2008 20:38:06 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8897960</guid><dc:creator>mike11stevens</dc:creator><description>&lt;p&gt;Has anyone successfully used input parameters in a SharePoint / Forms Server scenario? &amp;nbsp;Like several other commentors here, I am having trouble getting the url correct/working for my Forms Server forms...any/all help here would be greatly appreciated - thanks!&lt;/p&gt;
</description></item><item><title>InfoPath and MOSS 2007 Useful Links</title><link>http://blogs.msdn.com/infopath/archive/2007/02/26/passing-data-into-a-form-input-parameters.aspx#8995773</link><pubDate>Sat, 11 Oct 2008 14:47:36 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8995773</guid><dc:creator>In the Trenches</dc:creator><description>&lt;p&gt;u How to do custom themes for MOSS &lt;a rel="nofollow" target="_new" href="http://www.sharepointblogs.com/tigirry/archive/2007/07/03/custom-site-theme-for-sharepoint-2007-moss-2007-and-wss-3-0.aspx"&gt;http://www.sharepointblogs.com/tigirry/archive/2007/07/03/custom-site-theme-for-sharepoint-2007-moss-2007-and-wss-3-0.aspx&lt;/a&gt;&lt;/p&gt;
</description></item><item><title>re: Passing Data into a Form: Input Parameters</title><link>http://blogs.msdn.com/infopath/archive/2007/02/26/passing-data-into-a-form-input-parameters.aspx#9699379</link><pubDate>Thu, 04 Jun 2009 15:02:23 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9699379</guid><dc:creator>RRichie</dc:creator><description>&lt;p&gt;I believe there is a bug in InfoPath 2003 SP3 as with several machines and several forms I get &lt;/p&gt;
&lt;p&gt;The form contains XML that cannot be parsed:&lt;/p&gt;
&lt;p&gt; An invalid character was found in text content.&lt;/p&gt;
&lt;p&gt; Line 1, Position 5&lt;/p&gt;
&lt;p&gt; MSCF&lt;/p&gt;
&lt;p&gt; ----^&lt;/p&gt;
&lt;p&gt;Same code works in InfoPath 2007. As MainStreamSupport has just ended, I guess there is no hope for a bugfix?! However, my 450k-Employee-Org is still using InfoPath 2003...&lt;/p&gt;
</description></item><item><title>re: Passing Data into a Form: Input Parameters</title><link>http://blogs.msdn.com/infopath/archive/2007/02/26/passing-data-into-a-form-input-parameters.aspx#9939407</link><pubDate>Mon, 21 Dec 2009 03:34:29 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9939407</guid><dc:creator>wizardntexas</dc:creator><description>&lt;p&gt;So my question is, if I have data in a dropdown. How can i create a scheme where if in form &amp;quot;A&amp;quot; 6 items are selected from a dropdown box, then form submitted to library. Next user of the form &amp;quot;A&amp;quot;, those 6 items are not availible in the drop down list. IE they are checked out? If sharepoint and infopath are these great collaboration tools, why can't I make them work in a dynamic role, Why must everything be so static?&lt;/p&gt;
&lt;p&gt;Please advise?&lt;/p&gt;
</description></item></channel></rss>