Archive for February, 2008

Saturday, November 29, 2008 10:16

DataGridView Extension

DataGridView Extension

DataGridView Extension is a free component that extends the standard DataGridView control, provided with .NET 2.0 Framework.
Features

Customization the grid in IDE (design mode support for the background color and borders,default cell formatting, alignment,colors,column and row headers formatting, column sizing …).
Exporting the data within the data grid in several file formats (MS Excel,Html,PDF).
Build-in print [...]

Saturday, November 29, 2008 10:16

CAKE3 – Free archiving .Net library

Cake3 library supports compressing and extracting filesĀ  to/from different archive formats .The library can be easily integrated to your projects .
Usage of Cake3 library:
Compress

Cakdir3 cdir3 = new Cakdir3(@”c:\temp\arch.lha”);
cdir3.AddOptions.addFolder = AddOptions.folderMode.relative;
cdir3.AddOptions.baseFolder = @”c:\temp\”;
//Mask not supported in Cake3.
cdir3.AddOptions.addFile = new String[2] {@”c:\temp\arch.zip”, @”C:\temp\test\image.bmp”};
cdir3.Add();

Decompress

Cakdir3 cdir = new Cakdir3(@”c:\temp\test.lha”);
cdir.ExtractOptions.extractItem = new String[1] {cdir.Archive_Contents[0].fileName};
cdir.ExtractOptions.extractFolder = Utils.GetTempPath() + “qztemp”;
cdir.ExtractOptions.allowFolder = true;
cdir.ExtractOptions.allowOverwrite [...]

Saturday, November 29, 2008 10:16

Pex – dynamic analysis and test generation tool for .NET from Microsoft

Pex (Program EXploration) is an assistant to the programmer.Pex takes test-driven development to the next level. Pex analyzes .NET programs. From a parameterized unit test, it automatically generates unit tests cases with high code coverage. In addition,when a generated test fails, it suggests to the developer how to fix the bugs.
 
Features

With Pex, you can write [...]

Saturday, November 29, 2008 10:16

Microsoft SharedView

Microsoft SharedView is a fast, easy way to share documents and screen views with small groups of friends or coworkers.Share, review, and update documents with up to 15 people in real time.A Windows Live ID (Passport, Hotmail, or MSN) is required to start sessions, but not to join sessions.
 
Sharing an Application or Desktop
Previewing what [...]

Saturday, November 29, 2008 10:16

An Add-in to convert Visio 2007 files to XAML

An Add-in to convert Visio 2007 files to XAML

A small utility(by Saveen Reddy)  to convert Visio 2007 files to XAML. It uses XAMLTune to parse Visio files and generates XAML.

Download VisioExportToXAML
 
Technorati Tags: codeplex,tool,visio2007,xaml,wpf

Bookmark It

Hide Sites

$$(‘div.d845′).each( function(e) { e.visualEffect(’slide_up’,{duration:0.5}) });

Saturday, November 29, 2008 10:16

PoshConsole – a PowerShell console written in WPF

PoshConsole - a PowerShell console written in WPF

 
PoshConsole is a modern PowerShell Console. The PoshConsole is written in WPF and including a custom ConsoleTextBox control which could be reused for other purposes.PowerShell Console will also include lots of powerful features like tab-completion and keyboard navigation.It has separate options for setting the window’s opacity, always on top ,show in taskbar and has fully [...]

Saturday, November 29, 2008 10:16

VS 2005 addins: NAntAddin and NUnitAddin

VS 2005 addins: NAntAddin and NUnitAddin

The first addin allows you manipulate Nant targets and tasks  within VS 2005

NAntAddin Features:

Read .nant and .build files
Build visual tree from NAnt files
Filter public/private targets
Display target/task properties
Locate selected node into build file
Start/Stop selected target
At solution startup reload default build file
Full integration with VisualStudio
Sources provided

Download NAntAddin
The [...]