Use our Google Custom Search for best site search results.
Search
-
And additional question is, is there a method or way to determine via vb which section is currently showing? So that if I want to replace that section with another I can create code that first finds out if the section currently showing is the one I want, and if not replace it with the preferred section.?
-
Is this possible? I have 3 radio button group and 3 optional sections, one of which should display when the appropriate radio button is clicked. However only the optional section which is set as the default section shows when it's button is clicked. The others do not. So is it possible on the onclick event for the ...
-
Is there a way to host a Infopath 2003 form in a web browser? I can't afford 2007 or sharepoint server or 2003 server to put it on, and am wondering if there is a way to view a 2003 form in the browser...
-
I do not have sharepoint so that isn't an option. I have some ASP.NET pages which contain forms that I want to add repeating controls on. Is this possible?
Caeanis
-
After creating my form, I have noticed that when I move the mouse over the form, the section borders are appearing, triggered by a mouseover event. While it isn't a big deal I would like to remove this behaviour if possible. Does anyone have any ideas how I can do this? I'm using Infopath2003 btw.
Thanks!
Caeanis
-
I figured out a way to do this, the previous method was specific to jscript. The following is my method for doing so in BLOCKED SCRIPT
Dim objNodeList
Set objNodeList = XDocument.DOM.selectNodes("/processing-instruction()")
objNodeList.removeAll
-
Ok, I think I found out how to reference the nodes using:
var objNode=XDocument.DOM.selectSingleNode("/processing-instruction('mso-infoPathSolution')");
based on the post "Accessing Processing Instructions via XPath" by Matt Faus, (thanks Matt!). Now how do I delete this node?
-
I have a form that I'm using to generated xml doc for a nowledge base. I programmatically insert a stylesheet processing-instruction to reference a style sheet to make the docs readable in the browser, but the 2 processing instructions inserted by Infopath pointing to it as the application is causing me no small amount of grief. How ...