Use our Google Custom Search for best site search results.
Browse by Tags
-
Hi !! As I always say, I'm a newbie with InfoPath but I managed to learn a lot! I made a form that has a managed code where are these two very important codes: SetSaveAsDialogLocation and SetSaveAsDialogFilename. They work, wouhou! They work on my computer, a Windows 8 and they work on my collegue's...
-
Is it possible to design a custom User Control using C# in VSTA for InfoPath without registering it with the COM interop? It's not a control that I'm going to use on any other form, but I have a very specific functionality in mind. I'm still writing the user control to conform to all the...
-
I have a code block that detects when signatures (even a specific signature) is removed, and inside this block, I want to set some field values. Presently, I even know how to get and set field values using the XPathNavigator class's .SetValue method. The problem comes in when I try to do both at...
-
Hello there I've got this code but it has 2 problems: 1. The double value gets and "Only numeric fields are allowed" 2. I can't find the way to repeat calculate throught all rows in the table... Heres the code: public void cambios(){ //Navegacion entre campos XPathNavigator navform...
-
I am having trouble opening a web enabled form after adding some custom code to it. The code works fine when I preview the form in design mode but once I try and open the form on SharePoint I am prompted with an error. I am uploading this form as a Site Content Type in the Publishing Wizard. The fields...
-
I have a browser-enabled InfoPath 2010 form with several data connections to various SharePoint web services (User profile service etc - All data connections are packaged as UDCX files and reside in a data connection library.) The form works absolutely fine UNTIL I add any code at all. Even so much as...
-
I need to develop a custom control for InfoPath 2010 that will run as browser enabled form within SharePoint 2010. Searching the Web, I couldn't find any helpful information about developing such type of controls. It seems also there is a bit of confusion about the possibility to develop Infopath...
-
I have 6 form templates deployed on a Sharepoint form library as site content types (though I guess this information is irrelevant to my question...) All the 6 templates have a big part of code behing which could be re-used, while at the moment I have it duplicated in all of them. Ideally I would build...
-
Hi All, I am very new to infopath. Please help in the below scenario. I have a multiple views. I would like to persist some data in DB, before submitting to sharepoint. I have a Webservice which expects an XML and has its own logic to save the information by parsing the XML. What I need is, how do I...
-
In SharePoint, View is a virtual representation of a set of data from a specific list. We can programmatically create and update views for a list. Provided below is an example in C#.Net which explains the approach of creating and updating views. The code is divided in to 2 parts i.e. Part I - describes...