Use our Google Custom Search for best site search results.
Browse by Tags
-
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, I need to submit a info path browser enabled info path form every 20 minutes automatically from the FormServer.aspx page to a Document Library in Sharepoint. I have created a function with a timer that does HostingForm.Submit() every 20 minutes where the HostingForm is <form runat="server"...
-
I am trying to submit Infopath form contained in XmlFormView control through ASP.NET button which is on a web page. I tried to write action for data submit on a hidden field and then changed the value of that hidden field in infopath through ASP.NET code but somehow infopath gives me error and closes...
-
-
I created a form and when posted to the form library it says that it was "created by" PERSON - why does it say "person" and not the actual users name that posted the form?
-
Hi guys Does anyone know of any alternative solutions that can render InfoPath forms as HTML other than Form Services? I have been looking at Apose.Form for .NET and is exactly what I need however thier component is not quite there yet in terms of functionality. Cheers Alan
-
http://www.infopathdev.com/files/folders/other_topics/entry56232.aspx Is this possible in version 2.3? Thanks.
-
I'm trying to create a web application tat automatically creates a infopath form when criteria is met. I've copied the template into my app_data folder and use that as a starter point. I then create a new form based on the template. I'm unable to open the new form in infopath. At first, it...
-
Hello, I'm trying to modify a form we have. The form searches the DBXL, and returns the search results in a list view. Well anyway, I'm trying to change it to search a different part of the DBXL, but I don't understand how it all interacts. I've made a basic working model that is pretty...
-
1. From ServerSide (In c#) To change ListBox to DropDownList just change the Rows property of the ListBox with “1” Then it will behave as the Dropdown list in UI. → ListBox1.Rows = 1; For the reverse Add → DropDownList1.Attributes.Add("size", "3"); 2. In ClientSide (By Javascript...