Firebird is a free relational database that allows many SQL features and has existed since 1981. It supports indexing, primary key, foreign key, stored procedures, and many more. You can use it in many platforms of Linux and Windows. I liked using it because it's free. The only problem is with its IDE. It is really hard to find a user-friendly IDE that is also free. Although there is Flamerobin, I didn't like using it. The commercial ones like EMS for Firebird and IBExpert. I just wish the open source community also comes up with a comprehensive IDE for Firebird. It also took a very long while for Firebird to come up with another version. Maybe because it is almost complete.
I have been searching for sites and forums that would give me a any hint on having a footer on the .net DataGridView control. It was frustrating. I found some, but not what I was looking for. I use windows forms. It would have been easier if I was into web. I decided to create one for myself. It's not complete, but it works with me. It needs improvement and I hope that some programmers who might pass through this blog will help me with it :D. Limitations: Cannot set Footer values during design time. Can sometimes hide a row when scrolled to the last item in the grid. What I did was just create a user control that inherits the DataGridView control and add a StatusStrip to act as the footer. public partial class MyDataGridView : DataGridView { public StatusStrip Footer { get { return (StatusStrip)this.Controls["Footer"]; } } private bool _footerVisible; [Browsable(false)] /// /// Sets or Gets the va...
Comments