Apparently, I still don't understand the world of SEO. My PR in this blog dropped from PR 3 to nothing and I still don't know the reason why. The only thing I can think of is that I did something that violated some terms with Google. Maybe this blog is banned. I think I submitted this blog more than thrice in Google's directory. I hope I can get it back. I'm not in the mood for link building right now. I still have to work on the contents. :D
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