What if IT people can have their own private network over the Internet? What if we can have our very own static IP address without having a subscription to Internet Service Providers? What if we can create our own Hamachi without having a central server? Just let the network reside over the network. What if the Internet fully becomes another autonomous world free from the rules within our own countries? What if I CAN MAKE IT HAPPEN?
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