Browse by Tags

All Tags » c#   (RSS)
  • Sharepoint task

    Hi, I have a Sharepoint integrated process. A task gets created for a user in the tasks list in sharepoint. when a user clicks on the task, the associated custom page opens up and user can put some comments in the page. Now the issue which i am facing is that how we can update the sharepoint task from page code behind to continue the ...
    Posted to General (Forum) by riteshnegi on October 31, 2008
  • xmlDataFields instead of datafields

    I have a workflow that has a form where datafields would be hard to manage (80 of them) and the data is not really normalized for a smart object. Instead we used xmldatafields. I don't have time to pretty this up but wanted to post my notes.  I hope they help you. Things to know, use client connection not management ...
    Posted to General (Forum) by Ericx on October 23, 2008
  • How to Configure an Approval Process based on Organizational Hierarchy

    Hi, I would like to achieve the Following ; A Leave Approve Process: has 3 levels : An employee initiates the request -> This should be forwarded to his manager & email should be triggered and subsequently to His Manager. After that It should go to a specific (user or group) say HR and stops. My problem : 1) how can i add the active ...
    Posted to How to’s and Best Practices (from community) (Forum) by satishm on October 21, 2008
  • Worklist in Winform C#

    Hi guys, another (probably) silly question, please forgive me for that. I just need some code to get a workitem list for an specific user (from there I can get the ID) from a winform Aplication in C# We're making a custom application that displays the list in a form, and we're not sure on which is the best approach. Probably is easy with the ...
    Posted to General (Forum) by diazcalvi on August 14, 2008
  • Worklist in Winform C#

    Hi guys, another (probably) silly question, please forgive me for that. I just need some code to get a workitem list for an specific user (from there I can get the ID) from a winform Aplication in C# We're making a custom application that displays the list in a form, and we're not sure on which is the best approach. Probably is easy with the ...
    Posted to General (Forum) by diazcalvi on August 14, 2008
  • The Trouble with And

    Here's something I've seen several times that can lead to bugs.  C# has two logical-and operators: & and &&.  If you come from a C++ background, it's entirely natural to use the && operator.  But there is a difference between the two operators: the && operator is a short-circuit operator. The & ...
    Posted to BLACKTOP: Writings From the Road (Weblog) by DavidL on August 10, 2008
  • Programmatic SmartObject Inserts using C#

    What I'm doing  I have a project where we need to upload data into a collection of SmartObjects (SmartBox) before starting a workflow process. The data is passed into a web service via serialized Xml from another system. Using the SourceCode.Hosting.Client.BaseAPI namespace, I initiate objects like ...