Welcome to my personal blog, All the information in this bogs is my ideas,findings and thoughts on .Net, Asp.Net and SharePoint.
ALL POSTING ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND
1: SPSite spSite = new SPSite("http://localhost"); 2: SPWeb spWeb = spSite.OpenWeb();
3: SPList spList = spWeb.Lists["Shared Documents"];
4: SPList workflowlist = spWeb.Lists["NewHistoryLibary"];
5: SPWorkflowAssociation association = spList.WorkflowAssociations[0];
6: association.SetHistoryList(workflowlist);
7: spList.UpdateWorkflowAssociation(association);
Anonymous comments are disabled