Use our Google Custom Search for best site search results.
Search
Page 1 of 1 (3 items)
-
You could probably do an action rule to set the value of field "Course Title" to SQL server datasource field "Course title" where SQL server datasource Field "course" is equal to main datasource field "course" on the infopath form.
-
Hello everyone,
I used the following code to extract an InfoPath attachment to a shared drive.public void CTRL35_5_Clicked(object sender, ClickedEventArgs e)
{// Write your code here.
XPathNavigator mainDS = MainDataSource.CreateNavigator();
string base64EncodedString = ...
-
Did you ever get this to work?
I was able to get it to work with the following code:
public void CTRL35_5_Clicked(object sender, ClickedEventArgs e)
{// Write your code here.
XPathNavigator mainDS = MainDataSource.CreateNavigator();
string base64EncodedString = mainDS.SelectSingleNode(
"my:myFields/my:Attachment", ...
Page 1 of 1 (3 items)