Use our Google Custom Search for best site search results.
Browse by Tags
-
I have been working on a small library to help out with people who use code behind in InfoPath 2007. I have posted a couple of articles on code project recently but I would like to share it with others as well Articles: Encryption Automatic Properties The automatic properties article is still a work...
-
Hi, I had a question that I'm wondering is possible. I wanted to be able to have a button on a form that opens a specific file on a network drive. The network drive path is all specified through group policy, so everyone will have it mapped the same way (P:\ drive in this instance). I had created...
-
Hello Folks, I need help. I want to show confirm popup from c# coding in infopath 2010. Is there any way to show any popup in browser base infopath using c# coding or javascript? Thanks a ton in advance. Thanks & regards, Vatsal Thakker
-
I have a form that performs a specific task on form load. This is working properly. My question is, how do I disable/ignore this form load if I'm trying to open a submitted form. I only need to run the below code on creation. using Microsoft.Office.InfoPath; using System; using System.Xml; using...
-
I am writing a simple custom code to a Button control in C#. The code is supposed to open a URL in the same window. public void CTRL10_5_Clicked( object sender, ClickedEventArgs e) { string URL = " www.google.com " ; System.Diagnostics. Process .Start(URL); } Note: Typically, I would have a...
-
Hi,
Help, please.
I need to convert a string to decimal with currency format.
How can I do that?
Thanks in advanced.
-
Good day, I've got a quite simple Document Information Panel view, created in InfoPath 2013, to be used in Word. I need to perform a calculation on one of the fields. It's too complicated to perform this calculation within InfoPath, I need to write some code in C# of VB (using Visual Studio)...
-
InfoPath 2013 browser form - a secondary data source loads the list of items that will be updated (changed) on an 'On After Change Event'. It is only changing the value of the 'Status' column in every row where the value was changed. The code below is not updating the list ... what am...
-
I have an infopath form to that has three (3) buttons in it. They are SAVE, SUBMIT FOR APPROVAL and CANCEL. When user presses SAVE it submits the form to the Sharepoint Library, when SUBMIT FOR APPROVAL button is pressed it submits the form to the Library and then starts a workflow that is present in...
-
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...