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 ]
April 19th, 2005 | open source, tools | 0 Comments
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
March 28th, 2005 | open source, ORM, SQL, tools | 0 Comments
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);
February 28th, 2005 | code, development, open source | 0 Comments
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]
February 22nd, 2005 | debug, development, open source, vs 2003 | 0 Comments