Having trouble finding a blog or post that answers your question?
Check out our
Custom Search Page
Browse by Tags
-
I have a browser form where a repeating table is programmatically populated with many rows. I use the first row for the user input that a clicked event uses to create the rows. I need the functionality to reset this repeating table so the user can start over again. Because of the user experience I cannot...
-
Hello! I recently took over a project consisting in maintaining InfoPath forms in a SharePoint 2007 environment. Forms open with client application, thus not browser-enabled. It turns out that most form templates are set on full-trust and the code signing certificate, issued by the company's CA,...
-
Hi, With infopath 2010, we can detect and execute code on each view switch. Sample : public void FormEvents_ViewSwitched( object sender, ViewSwitchedEventArgs e) { MessageBox.Show( "Loading the view: " + this .CurrentView.ViewInfo.Name); } What I need is to execute the same code only when I...
-
Hello, I have a multiple-selection box, which when a user selects a value will add an additional row to a repeating table. This part works like a charm, but I'm facing two problems after the fact. Within my code, I have used the following on a object_Changed event: writer.WriteElementString("field1"...
-
I have created a Shipping Request Form and have been using it for years. It is posted to SharePoint and sent to print via code this .Print( true ); InfoPath 2010 is being used. Recently I was asked if I could create a Packing Slip to go with the product we ship, so I created another view, and would like...
-
Hi, I currently have an IP2010 Library Form that populates a repeating table from a secondary connection (table that is left of the solid black line). Within that secondary connection, I've created a button on each row of the repeating table the the user can click and it will populate a new row within...
-
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...
-
Hi, I have a IP2010 Library form that i would like to submit to both its main connection (the form library) as well as to a list within the SP2010 site. Is there anyways to set the button so that when the user clicks submit, it actually sends the form to both places? I've seen that you can submit...
-
Hi,
I am kind of newbie to Infopath. So it would be great if anyone can help me.
I am using infopath 2010, solution requires just to run offline i.e. on desktop and tablets.
i have xml secondary datasource, which is actually huge i.e. around 5000 items. I have set this not to load on form load...
-
Here's one way to do it: The idea is to store a copy of the form fields & values immediately after opening, and then add a function to detect when the fields have changed. When the user clicks your close button, call this function and if the values have changed, add code to submit the form; if...