cDevWorkflow

cDevWorkflow is a next generation Workflow-BPM product for .net developers

ContentFinder

Help user to find the content in every file in your folder.ContentFinder support regex search and asynchronous processing.

C++ CSV Library

csvlib.zip (954 kB)
The C++ CSV Filter Library is a simple to use, easy to integrate and extremely efficient and fast CSV in-memory data store processing library. The CSV filter allows for the efficient evaluation of complex expressions on a per row basis upon the loaded CSV store.

DevLib

DevLib.zip (30,4 MB)
DevLib is a highly reusable collection of components and core functionalities addressing common crosscutting concerns.

patterns & practices – Enterprise Library

entlib.zip (368,0 MB)
Microsoft Enterprise Library is a collection of reusable software components (application blocks) addressing common cross-cutting concerns.

C++ Mathematical Expression Library

exprtk.zip (3,2 MB)
*Project Description* The C++ Mathematical Expression Library (ExprTk) is a simple to use, easy to integrate and extremely efficient and fast mathematical expre

Fast C++ Math Expression Parser And Evaluator

The C++ Mathematical Expression Library (ExprTk) is a simple to use, easy to integrate and extremely efficient and fast mathematical expression parsing engine.

C++ DSV Filter Library

filter.zip (986 kB)
The C++ DSV Filter Library is a simple to use, easy to integrate and extremely efficient and fast CSV/DSV in-memory data store processing library. The DSV filter allows for the efficient evaluation of complex expressions on a per row basis upon the loaded DSV store.

FlowGraph

flowgraph.zip (233 kB)
A flow chart view and design component for the WinForms (.Net) platform.

FlowTasks

FlowTasks.zip (318,7 MB)
FlowTasks is a framework to develop human and business workflow

Microsoft HealthVault Solutions Development Process Framework

The Microsoft HealthVault Solutions Development Process Framework (MHSF) Guide provides practices for planning, designing, developing, and deploying successful HealthVault solutions – especially those that require enterprise-patient connectivity.

iBPM Reporter

iBPM Reporter enables to create reports from models created in Metastorm Provision modeling tool. With help of easily modifiable templates in docx format it is simple as few clicks to report your updated business model. It is developed with .NET4.

Digital Media Processing Project 1: Image Processor

Homework for "Digital Media Processing". Features Include: Curve Adjustment Tool Region Growing Segmetation Threshold Segmentation Guassian/Butterworth High/Low pass filters Laplacian Sharpen Sobel Filter Guassian Noise FFT spectrum chart Histogram and histogram equalization Clip

Jerusalem2032J2IL Published Project

Jerusalem2032J2IL design approach is a file system -content addressable-a mutable index (also called stage or cache) and automate parts of Android development.

JobObjectWrapper - A .Net wrapper over the Win32 Job Object mechanism

A job object allows a group of processes to be managed as a unit. Job objects are namable, securable, sharable objects that control attributes of and assign limits to the processes associated with them. Operations performed on the job object affect all processes associated with the job object. JobObjectWrapper is a .NET abstraction over the Win32 Job Object. With this library you can create job objects, create and assign a process to the job, control process and job limits, and register for the various process- and job-related notification events. Usage Example: using System; using JobManagement; using System.Diagnostics; namespace ConsoleApplicationTestJob { class Program { static void Main(string[] args) { JobObject jo = new JobObject(); jo.Events.OnExitProcess += new jobEventHandler<ExitProcessEventArgs>(OnExitProcess); jo.Limits.ActiveProcessLimit = 4; jo.Limits.Affinity = new IntPtr(1); ProcessStartInfo si = new ProcessStartInfo("whoami", "/all"); si.RedirectStandardOutput = true; si.UseShellExecute = false; si.CreateNoWindow = true; Process p = jo.CreateProcessSecured(si); while (!p.StandardOutput.EndOfStream) { Console.WriteLine(p.StandardOutput.ReadLine()); } foreach (System.Diagnostics.Process process in jo.ConstructAssignedProcessList()) { Console.WriteLine(process.ProcessName + " " + process.Id); } Console.ReadKey(); jo.TerminateAllProcesses(42); } static void OnExitProcess(object sender, ExitProcessEventArgs args) { Console.WriteLine("Process {0} has exited", args.TheProcess == null ? args.TheProcessId.ToString() : args.TheProcess.ProcessName); } } }

General Purpose Hash Function Algorithms

libhash.zip (1,4 MB)
The General Purpose Hash Functions Library has the following mix of additive and rotative general purpose string hashing algorithms.

NetSysInfo

netsysinfo.zip (699 kB)
NetSysInfo is a free software which displays information about system like Uptime, CPU, Memory, Drives devices, Network adapters, Disk Usage, Processes, Services and more.

Process Development Environment

pde.zip (204,4 MB)
The Process Development Environment is an environment for the design and modeling of domain specific languages and was especially build to support the implementation of process models as languages. PDE provides a standalone WPF&MVVM-based application to edit language instances.

Visual Studio Team System: Process Templates and Tools

process.zip (59,5 MB)
Visual Studio Team System: Process Templates and Tools community site is a collection of tools, samples and guidance related to Visual Studio Team Foundation Server Process Templates. We’ll share artifacts from early development cycles with you and would like to get feedback so we can improve our products.

Process Privileges

Privileges determine the type of system operations that a process can perform. Process Privileges is a set of extension methods, written in C#, for System.Diagnostics.Process. It implements the functionality necessary to query, enable, disable or remove privileges on a process.