Use our Google Custom Search for best site search results.
Search
-
Will the qRules generate CAML files for me? I'm looking on this page http://www.qdabra.com/en/products/qRules.aspx but it is not clear, I think if the page was revised to have more detailed information it might be more effective.
-
looks like someone else has this same exact issue
http://www.infopathdev.com/forums/p/10870/38710.aspx#38710
-
This might work for you, it's some code I have to empty a repeating section, which should be similar:
private void clearRepeatingGroup()
{
//The following block of code empties the repeating section when the form that is chosen ...
-
Hello!
I am trying to include an attachment in some already working code that creates a new item in a SharePoint list. I have read that you can do this by including the attachment as a field in your CAML document. The field will hold an encoded string that represents the file. I want to do this using the CAML ...
-
Yes you can. What I would do is set up a small list on SharePoint that has the Form name (or some ID), and the GUID and location of your CAML document you are using. Set it up initially to go to library A, and then programmatically switch it to use B.
An example to get you thinking:
Store the GUID as a hidden form ...
-
Is there a way to intercept the Digital Signature function and force it to not allow the user to sign unless the form has been completely validated? Or some other condition not covered by form validation (e.g. a custom condition).
Basically I want to write a function that catches the call to sign, tests if it should sign or not, and if so ...
-
Update:
I GOT IT TO WORK!
I did some more searching on here, if anyone stumbles on this in the future I fixed it by reformatting my CAML to this:
<?xml version="1.0" encoding="UTF-8"?>
<Batch OnError="Continue">
<Method ID="1" ...
-
Hello!
I am having a small issue submitting data to a list using CAML. I followed a guide here (along with other sites) to set up a data-receive connection using CAML. I set up the CAML to have the exact fields that the corresponding SharePoint list has columns. I then created a data-submit connection (UpdateListItems) to ...
-
So I did some more searching and it appears as though I can add controls to a page, but they need to be "backed" by the InfoPath schema. As i understand this as long as the information exists somewhere (SharePoint data connection, XML, etc) you can create a control programatically.
Are there any resources you know of to help me ...
-
It appears as though what I want to do isn't entirely possible. I was attempting this the other day and, although a learned a lot about the c# side of InfoPath, I stumbled upon this:
http://social.msdn.microsoft.com/Forums/en-US/sharepointinfopath/thread/b98a39e2-d0ce-458a-93bf-66e7f991b9bb
It claims that it is not possible (or ...