Use our Google Custom Search for best site search results.
Search
-
Hi,
Once go through the below link to know how to add the code.
http://www.infopathdev.com/forums/p/10129/36055.aspx#36055
-
Hi,
In the onload check the condition and if that condition is satisfied then add the below code.
IXMLDOMDocument2 sampleDataDom = (IXMLDOMDocument2)thisXDocument.CreateDOM();
sampleDataDom.setProperty("SelectionNamespaces", "your form name ...
-
Hi,
Do one thing, add two drop down list boxes. One includes the value (which you want to remove from the drop down) and the other does not include this value. So conditionally hide one control and show the another control.
-
Hi,
When you republish the form do the following steps.
1. After publishing the form, go to the library.
2. Click on relink documents which is in the view drop down (upper right corner side).
3. Now you will see a check box with the name relink. Check that check box and click relink.
-
Hi,
Once try the below steps.
1. Open the form in design mode.
2. Go to Tools ->Default values.
3. Check whether repeating fields (which are not showing in the form defaultly) check boxes are checked or not. If it is unchecked, then check those check boxes and click ok.
-
Hi,
You can do this using the following xml.
<RootNode>
<DDOne value="Product1">
<DDTwo value="system ...
-
Hi,
Yes, you can use these 10 views without any problem.
-
Hi,
No technical problems will arise because of the number of views in a form but the performance depends on the number of fields you have in the form and the calculations/connections with other sources.
-
Hi and welcome to forums,
Verify the text box properties. Follow the below steps.
1. Go to text box properties.
2. Go to Display tab.
3. Check Multi line check box. Also check Wraptext check box.
4. Select expand to show all text in scrolling drop down.
5. Click ok to close the properties window.
-
Hi,
We can prevent the user to delete the row when there is only one row using the on before change event. Once follow the below code (This is in C#).
[InfoPathEventHandler(MatchPath = " /my:myFields/my:group1/my:group2", EventType = InfoPathEventType.OnBeforeChange)]
public void group2_OnBeforeChange(DataDOMEvent e)
{
if ...