Comments on: InfoPath and SharePoint 2013 – Upgrading your forms… https://blogs.perficient.com/2013/03/06/infopath-and-sharepoint-2013-upgrading-your-forms/ Expert Digital Insights Tue, 06 Dec 2016 19:08:58 +0000 hourly 1 By: Joaquin Estrada https://blogs.perficient.com/2013/03/06/infopath-and-sharepoint-2013-upgrading-your-forms/#comment-4010 Tue, 06 Dec 2016 19:08:58 +0000 http://blogs.perficient.com/microsoft/?p=17391#comment-4010 Hoping this posting is still active and that I may get a reply but, will this process work for a situation where an SP2010 farm is upgraded to an SP2013 farm by means of transferring the content database, along with all of it’s site collections and leaving those collections in SP2010 compatibility mode? We’re having issues with InfoPath forms and workflows no working properly, but the site collections and the associated InfoPath forms and workflows are still in SP2010 compatibility mode.
Great article by the way!

]]>
By: Carl In 't Veld https://blogs.perficient.com/2013/03/06/infopath-and-sharepoint-2013-upgrading-your-forms/#comment-4002 Wed, 04 Dec 2013 21:14:03 +0000 http://blogs.perficient.com/microsoft/?p=17391#comment-4002 Can you point me to some instructions on how to publish an InfoPath 2013 form via Central Admin and then use features within sites to enable the forms for specific lists?
Other question: we are experiencing performance issues with InfoPath 2010 forms. Any pointers for troubleshooting? The list contains 180 columns of which 16 look-up columns. The page takes 6 seconds to load.

]]>
By: PB https://blogs.perficient.com/2013/03/06/infopath-and-sharepoint-2013-upgrading-your-forms/#comment-4001 Mon, 28 Oct 2013 13:16:02 +0000 http://blogs.perficient.com/microsoft/?p=17391#comment-4001 Suzanne,
Would you have a small sample InfoPath 2013 project that uses VS2012 to write code for say buttons? We develop in Visual Basic in VS2012 and thought this would be something simple to do and it’s turning out to not be. We have created a sample InfoPath project and when we try and code using VB in VS2012, nothing seems to work like we are use to. For instance we can’t even access say some radio buttons or text boxes on the InfoPath form. Is there any simple project you have that could try out?
Thanks.

]]>
By: suzanne george https://blogs.perficient.com/2013/03/06/infopath-and-sharepoint-2013-upgrading-your-forms/#comment-4000 Thu, 11 Jul 2013 13:25:41 +0000 http://blogs.perficient.com/microsoft/?p=17391#comment-4000 Correct, it is not backwards compatible. InfoPath 2013 uses the .Net 4 framework and SharePoint 2010 uses 3.5

]]>
By: Ajaz https://blogs.perficient.com/2013/03/06/infopath-and-sharepoint-2013-upgrading-your-forms/#comment-3999 Thu, 11 Jul 2013 11:38:08 +0000 http://blogs.perficient.com/microsoft/?p=17391#comment-3999 Hi Suzanna,
The code you specified to get the user profile information working with the infopath form, please advise where and how I insert this into my form.
Thanks

]]>
By: suzanne george https://blogs.perficient.com/2013/03/06/infopath-and-sharepoint-2013-upgrading-your-forms/#comment-3997 Thu, 30 May 2013 16:14:41 +0000 http://blogs.perficient.com/microsoft/?p=17391#comment-3997 No you can’t develop infopath 2013 forms and use them in SP2010, the classes and .Net libraries are not compatible.

]]>
By: suzanne george https://blogs.perficient.com/2013/03/06/infopath-and-sharepoint-2013-upgrading-your-forms/#comment-3996 Thu, 30 May 2013 16:13:48 +0000 http://blogs.perficient.com/microsoft/?p=17391#comment-3996 In 2013 are you using claims authentication? If so, I had several issues getting the user profile service to work. What I had to do was the following in the code behind…
public void FormEvents_Loading(object sender, LoadingEventArgs e)
{
string currentAccName = “domainName\\” + SPContext.Current.Web.CurrentUser.Name;
DataSources[“GetUserProfileByName”].CreateNavigator().SelectSingleNode(“/dfs:myFields/dfs:queryFields/tns:GetUserProfileByName/tns:AccountName”, NamespaceManager).SetValue(currentAccName);
this.DataConnections[“GetUserProfileByName”].Execute();
string querystr = “/dfs:myFields/dfs:dataFields/tns:GetUserProfileByNameResponse/tns:GetUserProfileByNameResult/tns:PropertyData/tns:Values/tns:ValueData/tns:Value”;
XPathNodeIterator rows = DataSources[“GetUserProfileByName”].CreateNavigator().Select(querystr, NamespaceManager);
}

]]>
By: BobC https://blogs.perficient.com/2013/03/06/infopath-and-sharepoint-2013-upgrading-your-forms/#comment-3994 Wed, 08 May 2013 08:35:33 +0000 http://blogs.perficient.com/microsoft/?p=17391#comment-3994 Can you use InfoPath 2013 to develop forms for SharePoint 2010? I ask because I’m running into some issues and it seems it’s not backward compatible for this type of env.

]]>