Use our Google Custom Search for best site search results.
Search
-
I don't think it did but will give it a try again.
-
Been a while since I had to do any IP work so need a brain refresh!
I have a form built around a SQL table. In the form I can list the table based on a query or I can add a new record. That all works well.
However occasionally we find the data in the SQL table is not correct and we need to make a change or update.
Is ...
-
I have been asked by my tech folks to update all the server calls in my forms from the actual server name to using an alias. The reason for this is so when they need to update or replace the server, all forms will continue to work with the alias.
I know the alias works because I have built a form from scratch but I cannt not find a way to ...
-
I did come up with a question.
When setting the programming language in Form Options it asks for a location.
Does that location need to be a network location where everyone has access or does it not matter since the code is in the form?
-
-
Yahoo! That worked. Thank you!
But now have a question. This change loads the data on form load. I would prefer the SQL query to run with this time-out extension based on the Run Query Button.
Where would I insert that code and would the same code work?
Thanks Again.
Art
-
Made a minor change but now I am getting a message that XDocument is not declared.
Public Sub FormEvents_Loading(ByVal sender As Object, ByVal e As LoadingEventArgs)
Dim dAdapt As Object
dAdapt = XDocument.DataAdapters("Main Connection")
dAdapt.Timeout = 60 'Increase to 60 seconds - Default is 30
dAdapt.Query() ...
-
When I go to set my programming language on the Forms options I only have C# and VB.
I do not have an Option for JavaScript.
I found where Hilary posted a VB script so I used this but I get a build error.PublicSub FormEvents_Loading(ByVal sender As Object, ByVal e As LoadingEventArgs)
Dim dAdapt
dAdapt = ...
-
I am getting timeouts against from SQL views because the query is talking more than 30 seconds.
I found this previous posting on how to increase the timeout
http://www.infopathdev.com/forums/t/11369.aspx
However I cant seem to find a solutioon for IP 2010.
Can someone take the IP2007 info and translate for me to IP 2010?
Thanks
-
Found the issue but not the solution.
The SQL table has 2 columns - div name and email something like this
Division Email
A Bob@xxx
B Dave@xxxx
C ...