<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/"><channel><title>InfoPath 2007</title><link>http://blogs.interknowlogy.com/jeffschroeder/category/106.aspx</link><description>InfoPath 2007</description><dc:language>en-US</dc:language><generator>.Text Version 0.95.2004.111</generator><item><dc:creator>Jeff Schroeder</dc:creator><title>Using substring functions in InfoPath for string manipulation</title><link>http://blogs.interknowlogy.com/jeffschroeder/archive/2007/02/08/11343.aspx</link><pubDate>Thu, 08 Feb 2007 15:31:00 GMT</pubDate><guid>http://blogs.interknowlogy.com/jeffschroeder/archive/2007/02/08/11343.aspx</guid><description>&lt;P&gt;&lt;FONT face=c size=2&gt;Have you ever needed to manipulate data in a string in InfoPath, maybe to remove characters or pull out a specific piece of data in a string?&amp;nbsp; Or have you ever tried to create a dynamic unique name using the now() function&amp;nbsp;to save an InfoPath form and&amp;nbsp;received&amp;nbsp;an error saying your filename contains illegal or invalid characters?&amp;nbsp; The reason the now() function creates an error is that it contains colons(:) and depending on the format the date may also have forward-slashes(/) in it.&amp;nbsp; The hard part is trying to remove this formatting when you're limited to XPath Functions, you use a date function to re-format the date.&amp;nbsp; So you have to think a little more abstract unless you're planning on using Visual Studio.&amp;nbsp; These concepts apply to other data types as well as text strings, you just have to be creative to get the results you're looking for.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=c size=2&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=c size=2&gt;This solution wasn't immediately apparent, but it makes sense after you've done it.&amp;nbsp; You use "Substring", "Substring-After" and "Substring-Before" functions in conjunction with "today()" and/or "now()" functions to pull the date or date/time apart and reformat it any way you choose or put it all in one long ID that is unique to the second.&amp;nbsp; You can also apply this to user input provided you enforce a standard format for a given field.&amp;nbsp; So here are some examples of how to do this:&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=c size=2&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=c size=2&gt;Note: All examples use the data type&amp;nbsp;"Text(string)", unless otherwise noted.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;&lt;FONT face=c size=2&gt;Example 1&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=c size=2&gt;The today function contains characters I want to remove so I can re-arrange the date, use a part of it, or use as a number.&amp;nbsp; So now we can pull out the parts of the date without the extra characters by using a the position and length of each part of the date and a substring function.&amp;nbsp; This can be used on any string when you know the position and length of the parts you need to retrieve.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=c size=2&gt;today() = 2007-02-08&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=2&gt;&lt;FONT face=c&gt;&lt;STRONG&gt;Year:&lt;/STRONG&gt; (substring(today(), 1, 4) = 2007&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=2&gt;&lt;FONT face=c&gt;&lt;STRONG&gt;Month:&lt;/STRONG&gt; substring(today(), 6, 2) = 02&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=2&gt;&lt;FONT face=c&gt;&lt;STRONG&gt;Day:&lt;/STRONG&gt; substring(today(), 9, 2) = 08&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=c size=2&gt;concat(substring(today(), 1, 4), substring(today(), 6, 2), substring(today(), 9, 2)) = 20070208&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=c size=2&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;&lt;FONT face=c size=2&gt;Example 2&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=c size=2&gt;The now function contains&amp;nbsp;a date and a time element as shown below, this format is well structured but cannot be used in a filename due to the invalid characters in the string.&amp;nbsp; The time element can also be pulled out of it and if used with the Time data type, it provides a nice neat timestamp.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=c size=2&gt;now() = 2007-02-08T14:20:39&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=c size=2&gt;substring(now(), 12, 8) = 14:20:39&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=c size=2&gt;substring(now(), 12, 8) = 2:20:39 PM (data type: Time)&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=c size=2&gt;concat(substring(now(),12,2),substring(now(),15,2),substring(now(),18,2)) = 142039&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=c size=2&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;&lt;FONT face=c size=2&gt;Example 3&lt;/FONT&gt;&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=c size=2&gt;The now function can also be used to create a unique date/time string that can be used as a control number or as part of a filename.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=c size=2&gt;now() = 2007-02-08T14:20:39&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=c size=2&gt;concat(substring(now(), 1, 4), substring(now(), 6, 2), substring(now(), 9, 2), substring(now(),12,2),substring(now(),15,2),substring(now(),18,2)) = 20070208142039&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=c size=2&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;&lt;FONT face=c size=2&gt;Example 4&lt;/FONT&gt;&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=c size=2&gt;Another interesting way to approach data manipulation is to use the today() and now() functions along with substring-before and substring after.&amp;nbsp; This demonstrates how you can pull out the characters in the string that you do not want instead of pulling out the characters you do want.&amp;nbsp; This is more useful in scenarios where the character positions and&amp;nbsp;lengths may not be consistent but you need to remove certain characters from the string.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=c size=2&gt;today() = 2007-02-08&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=c size=2&gt;now() = 2007-02-08T14:20:39&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=2&gt;&lt;FONT face=c&gt;&lt;B&gt;Hours:&lt;/B&gt; substring-before(substring-after(substring-after(now(), today()), "T"), ":") = 14&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=2&gt;&lt;FONT face=c&gt;&lt;B&gt;Minutes:&lt;/B&gt; substring-before(substring-after(substring-after(substring-after(now(), today()), "T"), ":"), ":") = 20&lt;/FONT&gt;&lt;/FONT&gt; 
&lt;P&gt;&lt;FONT size=2&gt;&lt;FONT face=c&gt;&lt;B&gt;Seconds:&lt;/B&gt; substring-after(substring-after(substring-after(substring-after(now(), today()), "T"), ":"), ":") = 39&lt;/FONT&gt;&lt;/FONT&gt; 
&lt;P&gt;&lt;EM&gt;&lt;FONT face=c size=2&gt;&lt;/FONT&gt;&lt;/EM&gt;
&lt;P&gt;&lt;EM&gt;&lt;FONT face=c size=2&gt;Note: each piece can be used separately or pieced back together using the concatenate function.&lt;/FONT&gt;&lt;/EM&gt; 
&lt;P&gt;&lt;FONT face=c size=2&gt;concat(substring-before(substring-after(substring-after(now(), today()), "T"), ":"), substring-before(substring-after(substring-after(substring-after(now(), today()), "T"), ":"), ":"), substring-after(substring-after(substring-after(substring-after(now(), today()), "T"), ":"), ":") = 142039&lt;/FONT&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;img src ="http://blogs.interknowlogy.com/jeffschroeder/aggbug/11343.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>Jeff Schroeder</dc:creator><title>Configuring an InfoPath 2007 Form as an Administrator Approved Template for SharePoint 2007</title><link>http://blogs.interknowlogy.com/jeffschroeder/archive/2006/10/31/7913.aspx</link><pubDate>Tue, 31 Oct 2006 11:15:00 GMT</pubDate><guid>http://blogs.interknowlogy.com/jeffschroeder/archive/2006/10/31/7913.aspx</guid><description>&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Arial size=2&gt;I was asked to figure out how to allow many users to fill-out and edit a form based on InfoPath, however the users may not access or see anyone else's form and the template must be easy to manage as it is revised over time.  On the surface, the answer seemed simple - you just upload the template into a SharePoint 2007 Form Library and you're set.  Now you have this issue of securing the documents so Group A users can only see and edit Group A forms and Group B users can only see and edit Group B forms.  Ok that is addressed by row-level security and you just assign the right group to each form.  Then it was determined that each set of users would access their own site and this form is common between users to collect information.  With the potential to have hundreds of sites, it doesn't make much sense any more to publish the InfoPath form to each Form Library and then try to keep track of managing the revisions to the forms over time.  No problem...lets publish this form as a Content Type, that seems to have the same limitations as publishing the form to a Form Library.  Although it does address using more advanced features of InfoPath 2007 that are not browser-enabled, but this is not going to solve my problem either.  Then I remembered hearing that you upload a Form Template in Central Administration and assign it to an entire Site Collection.  This allows you to manage the form in one place and use it in many places, this fits the requirements perfectly.  After some quick searching I found that the information on this seemed almost non-existent, so here is how you setup the template in InfoPath 2007 and SharePoint 2007.  I ran into a minor glitch when I went back to update the template later on and there was something about a job timer not running and SharePoint listed how to solve the problem using StsAdm.exe, I might have overlooked configuring a setting at some point but my problem was solved so I was happy.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Arial size=2&gt;&lt;/FONT&gt; &lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;FONT face=Arial size=2&gt;Configure InfoPath so your form is Browser-Enabled and create your template.  Pay careful attention to which features are compatible with a browser-enabled form, some of the more advanced features are only available in the InfoPath 2007 client.  Using the Design Checker will alert you to most of the problems you may encounter. &lt;/FONT&gt;&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;&lt;FONT face=Arial size=2&gt;&lt;/FONT&gt; &lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;FONT face=Arial size=2&gt;Now lets Publish your Template and make it an Administrator Approved Template for SharePoint 2007.  You'll need to select the location you'd like to publish your form, which in this case will be a SharePoint server with or without InfoPath Form Services.&lt;/FONT&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/A&gt;
&lt;P&gt; &lt;A href="http://blogs.interknowlogy.com/downloads/jeffschroeder/ConfiguringanInfoPath2007FormasanAdminis_9D30/image013.png" atomicselection="true"&gt;&lt;IMG style="BORDER-RIGHT: 0px; BORDER-TOP: 0px; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px" height=173 src="/downloads/jeffschroeder/ConfiguringanInfoPath2007FormasanAdminis_9D30/image01_thumb2.png" width=240 border=0&gt;&lt;/A&gt; &lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;FONT face=Arial size=2&gt;Select the location of the SharePoint or InfoPath Form Services site you'd like to publish to.&lt;/FONT&gt;&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;&lt;A href="http://blogs.interknowlogy.com/downloads/jeffschroeder/ConfiguringanInfoPath2007FormasanAdminis_9D30/image033.png" atomicselection="true"&gt;&lt;IMG style="BORDER-RIGHT: 0px; BORDER-TOP: 0px; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px" height=173 src="/downloads/jeffschroeder/ConfiguringanInfoPath2007FormasanAdminis_9D30/image03_thumb2.png" width=240 border=0&gt;&lt;/A&gt; &lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;FONT face=Arial size=2&gt;Check the box that says, Enable this form to be filled out by using a browser and then select the radio-button for Administrator-approved form template (advanced).  This prepares the form for an Administrator to upload the form in SharePoint so it can be assigned as a Content Type to a Site Collection.&lt;/FONT&gt;&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;&lt;A href="http://blogs.interknowlogy.com/downloads/jeffschroeder/ConfiguringanInfoPath2007FormasanAdminis_9D30/image072.png" atomicselection="true"&gt;&lt;IMG style="BORDER-RIGHT: 0px; BORDER-TOP: 0px; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px" height=173 src="/downloads/jeffschroeder/ConfiguringanInfoPath2007FormasanAdminis_9D30/image07_thumb1.png" width=240 border=0&gt;&lt;/A&gt; &lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;FONT face=Arial size=2&gt;Specify a location and filename for the form template to be saved at.  This can be a file share or a SharePoint Library, the Administrator has to be able to access the file to upload the template into SharePoint.&lt;/FONT&gt;&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;&lt;A href="http://blogs.interknowlogy.com/downloads/jeffschroeder/ConfiguringanInfoPath2007FormasanAdminis_9D30/image092.png" atomicselection="true"&gt;&lt;IMG style="BORDER-RIGHT: 0px; BORDER-TOP: 0px; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px" height=173 src="/downloads/jeffschroeder/ConfiguringanInfoPath2007FormasanAdminis_9D30/image09_thumb1.png" width=240 border=0&gt;&lt;/A&gt; &lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;FONT face=Arial size=2&gt; You can add any columns names from the template that you'd like to be available to SharePoint to display in a view or to facilitate search for those fields.  I chose not to use any for this scenario.&lt;/FONT&gt;&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;&lt;A href="http://blogs.interknowlogy.com/downloads/jeffschroeder/ConfiguringanInfoPath2007FormasanAdminis_9D30/image0113.png" atomicselection="true"&gt;&lt;IMG style="BORDER-RIGHT: 0px; BORDER-TOP: 0px; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px" height=173 src="/downloads/jeffschroeder/ConfiguringanInfoPath2007FormasanAdminis_9D30/image011_thumb1.png" width=240 border=0&gt;&lt;/A&gt; &lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;FONT face=Arial size=2&gt;Verify your form information and then click Publish.&lt;/FONT&gt;&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;&lt;A href="http://blogs.interknowlogy.com/downloads/jeffschroeder/ConfiguringanInfoPath2007FormasanAdminis_9D30/image0131.png" atomicselection="true"&gt;&lt;IMG style="BORDER-RIGHT: 0px; BORDER-TOP: 0px; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px" height=173 src="/downloads/jeffschroeder/ConfiguringanInfoPath2007FormasanAdminis_9D30/image013_thumb1.png" width=240 border=0&gt;&lt;/A&gt; &lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;FONT face=Arial size=2&gt;You'll see another screen that will say your form template was published successfully and it will have a note about providing your server administrator with the info provided above.  Click Close.&lt;/FONT&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/A&gt;
&lt;P&gt;&lt;A href="http://blogs.interknowlogy.com/downloads/jeffschroeder/ConfiguringanInfoPath2007FormasanAdminis_9D30/image0151.png" atomicselection="true"&gt;&lt;IMG style="BORDER-RIGHT: 0px; BORDER-TOP: 0px; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px" height=173 src="/downloads/jeffschroeder/ConfiguringanInfoPath2007FormasanAdminis_9D30/image015_thumb1.png" width=240 border=0&gt;&lt;/A&gt; &lt;/P&gt;
&lt;P&gt;&lt;FONT face=Arial size=2&gt;&lt;/FONT&gt; &lt;/P&gt;
&lt;P&gt;&lt;FONT face=Arial size=2&gt;Now onto the fun part of making this template a Content Type in SharePoint so you can use it in multiple libraries and manage the template in one location.  You must have Admin rights to SharePoint Central Administration to perform this task.&lt;/FONT&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;FONT face=Arial size=2&gt;&lt;/FONT&gt; &lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;FONT face=Arial size=2&gt;Navigate to the Central Administration home page and go to Application Management, you'll see InfoPath Form Services listed on the bottom left-hand side.  Click on Upload Form Template.you'll see a screen like below.  Find the location of the template and browse to it.  (If you saved it to SharePoint you'll need to save a local copy on your computer and upload from there.)&lt;/FONT&gt;&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;&lt;A href="http://blogs.interknowlogy.com/downloads/jeffschroeder/ConfiguringanInfoPath2007FormasanAdminis_9D30/image0171.png" atomicselection="true"&gt;&lt;IMG style="BORDER-RIGHT: 0px; BORDER-TOP: 0px; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px" height=150 src="/downloads/jeffschroeder/ConfiguringanInfoPath2007FormasanAdminis_9D30/image017_thumb1.png" width=240 border=0&gt;&lt;/A&gt; &lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;FONT face=Arial size=2&gt;Once you upload the form template you'll get a message telling you it was successfully uploaded.  Click OK.&lt;/FONT&gt;&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;&lt;A href="http://blogs.interknowlogy.com/downloads/jeffschroeder/ConfiguringanInfoPath2007FormasanAdminis_9D30/image0192.png" atomicselection="true"&gt;&lt;IMG style="BORDER-RIGHT: 0px; BORDER-TOP: 0px; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px" height=150 src="/downloads/jeffschroeder/ConfiguringanInfoPath2007FormasanAdminis_9D30/image019_thumb1.png" width=240 border=0&gt;&lt;/A&gt; &lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;FONT face=Arial size=2&gt;You're now taken to a screen to Manage Form Templates, you need to Activate to a Site Collection.  Click on that link and select the correct Web Application and the Site Collection under that Web Application where you want the Content Type activated for your Template.  Now your template will be available as a Content Type for all of your Libraries under your Site Collection.&lt;/FONT&gt;&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;&lt;A href="http://blogs.interknowlogy.com/downloads/jeffschroeder/ConfiguringanInfoPath2007FormasanAdminis_9D30/image0212.png" atomicselection="true"&gt;&lt;IMG style="BORDER-RIGHT: 0px; BORDER-TOP: 0px; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px" height=150 src="/downloads/jeffschroeder/ConfiguringanInfoPath2007FormasanAdminis_9D30/image021_thumb1.png" width=240 border=0&gt;&lt;/A&gt; &lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;FONT face=Arial size=2&gt;When you make revisions to your Form Template and need to re-publish follow all of the steps above.  You won't need to activate the Template again as it has already been activated.  You will probably get the same message I saw about about the Timer Job Service, see the message below and perform the following action on the server to upgrade the template.  I'll have to figure out how to enable the administrative service later.&lt;/FONT&gt;&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;&lt;FONT face=Arial size=2&gt;"The timer job for the operation has been created. However, it cannot be run because the administrative service for this server is not enabled. To run the timer job, use the StsAdm.exe command line utility (stsadm.exe -o execadmsvcjobs)."&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Arial size=2&gt;So run the StsAdm.exe utility on the Server running SharePoint, the process will take a few minutes to complete and then your updated template will be ready for use.  The command to run is "stsadm.exe -o execadmsvcjobs", this has to be run from the directory where StsAdm.exe lives.  So you'll just have to navigate to that directory in Command Prompt to run it.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.interknowlogy.com/downloads/jeffschroeder/ConfiguringanInfoPath2007FormasanAdminis_9D30/image0233.png" atomicselection="true"&gt;&lt;IMG style="BORDER-RIGHT: 0px; BORDER-TOP: 0px; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px" height=118 src="/downloads/jeffschroeder/ConfiguringanInfoPath2007FormasanAdminis_9D30/image023_thumb2.png" width=240 border=0&gt;&lt;/A&gt; &lt;/P&gt;
&lt;P&gt;&lt;FONT face=Arial size=2&gt;&lt;U&gt;&lt;/U&gt;&lt;/FONT&gt; &lt;/P&gt;
&lt;P&gt;&lt;FONT face=Arial size=2&gt;&lt;U&gt;Now onto setting up your Form Library or Document Library to use the Template that is now a Content Type.&lt;/U&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;FONT face=Arial size=2&gt;Create a new Form Library or a Document Library under your Site Collection or any of the Sites under that Site Collection.  Then go into the Library and go to Settings, Form Library Settings (or Document Library Settings).  Under General Settings, click on Advanced Settings and select Yes under Allow Management of Content Types then click OK.&lt;/FONT&gt;&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;&lt;FONT face=Arial size=2&gt;&lt;/FONT&gt; &lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;FONT face=Arial size=2&gt;Find the Content Types section under Settings.  Click on Add from existing site content types and select the name of the template you uploaded earlier.  Set that as your default Content Type and make sure it's Visible on the New Button.  You can also delete the default content type to clean up the library.  Adjust your views as needed and set your permissions on the Library and your users can start filling out forms and submitting them to the library.  Repeat these steps for every library you wish to use the Template in and assign user permissions as needed.&lt;/FONT&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;img src ="http://blogs.interknowlogy.com/jeffschroeder/aggbug/7913.aspx" width = "1" height = "1" /&gt;</description></item></channel></rss>