I have been using shared hosting services from various providers and I thought it is time to use a virtual private server (VPS). I was told that Digital Ocean is a great option. So I did try Digital Ocean, and I wasn't disappointed. They have great service, and a fast server. It is also easy to add another VPS, and it is also easy to delete if you don't need it anymore. I've been using Digital Ocean's service for months now and I highly recommend it. For more information click here.
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