Archive for the Category open source

 
 

EventSpy by Urs Eichmann

Gone are the days of dozens of test event handlers and breakpoints just to find out which events are fired in what order and under which circumstances! EventSpy catches all events of any Windows Forms Control or other event-raising object and writes event info, arguments and the call stack to the VS.NET IDE Debug Output window or to a file.EventSpy uses Reflection and dynamically built assemblies to accomplish this task.

Download EventSpy from gotdotnet.com

[ Via Paul Laudeman ]

D4MODELIZER

D4Modelizer is a simple but powerful code generator. It produces C# code from your Database. Each table could be mapped to an object and its fields in properties. D4Modelizer propose a mapping schema between the database structure and the object model.

Features

  • Map your DataBase to Object Model.
  • Produce secure and optimized C# code.
  • Reduce develop time with integrated persistance methods.
  • Each object could have Add,Delete,Modify,GetData methods corresponding to data source.
  • Works with SQLServer, MSDE, IBM DB/2, Oracle, Sybase, MySQL, Access,Firebird and PostgreSQL.
  • Create directly Project for MS Visual Studio & SharpDevelop.
  • Produce Unit Testing with NUnit framework
  • US,Spain,Italian & French versions.

 

Download D4MODELIZER

Tutorials on using the application blocks in the Enterprise Library

There are interesting tutorials by David Hayden

DataAdapter for CSV files

Cathi Gero posted some code that allows you work with CSV files using CSVDataAdapter . Nice job!

To read the contents of a CSV file:

CSVDataAdapter CSVda = new CSVDataAdapter(@"c:\MyFile.csv");
CSVda.HasHeaderRow = true;
DataSet ds = new DataSet();
CSVda.Fill(ds);
 

To write to a CSV file:

CSVDataAdapter CSVda = new CSVDataAdapter(@"c:\MyFile.csv");
bool InclHeader = true;
CSVda.Update(MyDataSet,"MyTable",InclHeader);
 

Enhanced DataSet Watch Visual Studio Addin

This addin is an update to Mohammed Barqawi’s excellent DataSet Quick Watch addin.

I’ve summarized the enhancements below:

Added support for Typed DataSets
Added support for DataTables and DataRows (typed and untyped)
Added filtering support (based on DataViewRowState and free-text)

Read article( Download addin )

[ Via CodeBureau : Matt Simner]


Page 3 of 512345