Use our Google Custom Search for best site search results.
Search
-
Because I don't know what exactly you need, I just provide you a possible solution based on my assumption.
In a workflow, we create a task and link it to a task form consisting of an attachment type field. When the form being sent back, we have attached document as a string. In OnTaskChanged activity, we can get the document and put it ...
-
Please check out the following web site:
http://blogs.msdn.com/sharepointdesigner/archive/2007/07/06/porting-sharepoint-designer-workflows-to-visual-studio.aspx
It talks about how to edit a SPD workflow within VS and then deploy it. Also in the reviews at the bottom of the page, people
mentioned problems they had during the process and how to ...
-
currently, I'm using the way suggested by ekzarov and it works fine.
workflowProperties.Item["myProperty"] = "blablabla";
workflowProperties.Item.Update(); When you publish your form to a list, it asks you to choose the fields to be shown on that list. As you choose the item you want to update, ...
-
currently, I'm using the way suggested by ekzarov and it works fine.
workflowProperties.Item["myProperty"] = "blablabla";
workflowProperties.Item.Update(); When you publish your form to a list, it asks you to choose the fields to be shown on that list. As you choose the item you want to update, ...
-
Thanks for the reply. I found out that I had to allow the change to the properties when the forms have been published to their host environment. But I’ll try your suggestion, see what difference it’d make.
-
Hi Hilary,
I read the sample code you showed me, it's very helpful. I have a workflow that has an InfoPath form as its task form. May I extract the attachment within this task form in the workflow instead of handling by the code on form submission and practically which approach is better? Thank you!
-
Thank you, Clay. I'll try both ways you pointed out.
-
Hi everyone.
I have an InfoPath task form with a file attachment control associated to a SharePoint workflow. The file was uploaded successfully and I got an encoded string for attached file. I wonder if the file was saved in somewhere on my SharePoint site automatically or I have to get it back by coding? If I need to write some code, ...
-
Hi,
I want to update some list items in a form library through workflowproperties. The list items are integrated from an InfoPath form. The code used in the workflow is as follows:
SPWeb thisWeb = new SPSite(workflowProperties.SiteId).OpenWeb(workflowProperties.WebId);
SPListItem thisItem = ...
-
Hi Everyone,
I have created two InfoPath forms. The first one was published to a form library on the server, and the second one was published to the host application, which was a simple state machine workflow built in VS 2008, as the task form. When I tried to open the task form from the task list, I got the error like "Type: ...