[I Say]What is the ultimate meaning of life

26. August 2010
When you are thinking about this question, you must be depressed on your life. According to <The Hitchhiker's Guide to the Galaxy> there are two answers to this question: 1. LOVE. 2. Suffer. On the contrary, if nobody loves you or nobody you are in love with or you suffer from nothing. I mu... [More]

I_Say

[Sharepoint2010]Sharepoint2010 development learnning materials

24. August 2010
Get Started developing on Sharepoint 2010:http://msdn.microsoft.com/en-us/sharepoint/ee513147.aspx Sharepoint 2010 advanced developing trainning:http://msdn.microsoft.com/en-us/sharepoint/ff420377.aspxSharepoint 2010 development home page:http://msdn.microsoft.com/en-us/sharepoint/default.aspx ... [More]

Sharepoint2010

[Sharepoint2010] SharePoint 2010 Service Manager

24. August 2010
I installed Sharepoint 2010 in my laptop. But SP2010 eat a lot of my RAM, today I found a tool that can solve the problem: SharePoint 2010 Service Manager Download it here:http://sharepointserviceman.codeplex.com/

Sharepoint2010

[WF4]Sequence, Flowchart and State Machine, Which one do I need?

23. August 2010
Currently, we have 3 types of workflow in WF4; they are Sequence, Flowchart and State Machine. State Machine workflow is now CTP1, and will be published in .NET 4.5. When your workflow include many sequence process, no much human interactivity, no much backwards. Use Sequence workflow. When your w... [More]

WF4

[WF]SharePoint Workflow Solution Spectrum

22. August 2010
Out – of – box WF:Some common standardized workflow, say, document approval , Leave request workflow etc. we can use this workflow directly by some configuration. Custom Declarative WF: Non – developers, create workflows by rehost workflow designer. Custom Code WF: Developers c... [More]

WF4

[VS2010]Visual Studio 2010 Productivity Power Tools

19. August 2010
Visual Studio 2010 Productivity Power Tools - an awesome VS2010 extension, install it to make VS2010 super. From now on, I can post code by just copying from VS2010 directly to Word 2010 and publish blog entries to my Blog host. Here is a sample code :     public class Sim... [More]

DotNet

[WF4]Long Running WF4 Host

17. August 2010
In WF3, when a workflow is delayed and persisted in persistence store, after the timer expired, workflow will resume from database automatically.Now in WF4, we have to resume a persisted workflow manually, So can we create a long running WF4 that can monitor a delayed workflow and resume a workflow ... [More]

WF4

[WF]A interesting introduction to Workflow Management

11. August 2010
http://www.youtube.com/watch?v=3KJjKY8k9Lk  

WF4

[WF4]My Composite Activity

11. August 2010
Activity Designer: <sap:ActivityDesigner x:Class="MyActivityLibrary.MyCompositeDesigner"     xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"     xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"     xmlns:sap="clr-namespace:S... [More]

WF4

[WF4]Promote persistence Data

4. August 2010
By promoting data,we can query sql persistence store directly: 1. My persistence participant:     public class MyPersistenceParticipant : PersistenceParticipant {         public string message;         static XN... [More]

WF4