One of the many factors that would make your website stand out is the Photos. Photos add color and life to your website. There are stock photos readily available for your use. Some are royalty free, and some for a small fee. Just as there are talents behind designing websites, there would also be talents behind these photos. It's good to know that I know someone of this caliber. I would personally recommend her works. She posts some of her works 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