Having trouble finding a blog or post that answers your question?
Check out our
Custom Search Page
Browse by Tags
-
Hi, I currently have an IP2010 Library Form that populates a repeating table from a secondary connection (table that is left of the solid black line). Within that secondary connection, I've created a button on each row of the repeating table the the user can click and it will populate a new row within...
-
Hi everyone, i have a repeating table which contains a checkbox. The structure is activitylogs(group)-> activityLog(repeating table)-> ongoing (checkbox) I want to dynamically insert new row and assign the checkbox a value according to another filed value. I managed to insert the checkbox, but...
-
I figured this out. IsDBNull seems to take care of it. I ran thru the code in debug to check where the ordinal sat. It was 14 in this case. int EmailID = rdr.GetOrdinal("EmailID"); Then when using GetString: if (!(rdr.IsDBNull(14))) { EmpNewData.SelectSingleNode("/my:myFields/my:Emp/my...
-
I have my new form working great except today I ran into an issue with null values. I thought I was capturing the nulls, but I was wrong. rdr is my SqlDataReader if (rdr[EmailID] != null) { //this blows up on this line on the 32nd iteration of the loop when searching for an extended group. EmpNewData...
-
Hi all,
I want to do the following thro infopath:
1. While filling one repeating table another repeating table should be filled up automatically with the same information of first repeating table.
2. Repeating table information want to store in list collection in like arrraylist in C#
3.Want...
-
Hi, How i can bind the alternate row color with repeater in browser enabled infopath form using code. Thanks, Devendra
-
TIA for any and all consideration and positive comments. I'm trying to copy elements from a datasource into a repeating table. I've found success all except for populating blank dates. I've scoured the forum and found a few comments about the xsi:nil tag, but (from what I could decipher)...
-
I am trying to trigger a WF on an InfoPath form to delete a row from a Repeating Table within the form, when a certain condition is met. The DeleteSelf() method does not throw any error/Exception, but does not execute as well. When I view the form after the WF completes (no exceptions again), all the...
-
Hi, I've been given a form which has repeating tables on it. The repeating table allows a user to add a row and enter some information. The information they enter can be any size. The users have requested the ability to print out the form. I've managed to get this working, but they've commented...
-
Hello, I have created a form for taking orders from our dealers that is based on an XML schema. I need them to be able to paste their order lines into one text box and use code on the form to parse that out into each xml line for item qty and item id. I have the code working to set the fields from the...