Free Image Galleries for your website
Mar 6th
Highslide JS
Smooth Gallery
Slideshow 2!
GreyBox
(E)2 Photo Gallery
Imago
minishowcase
pyxy
Spry
slideviewer
Zenphoto
Hoverbox
FrogJS
SimpleViewer
Polaroid
fShow
dfGallery
The Flash XML Gallery
Flash Page Flip
DateTimePicker – reset focus
Mar 5th
Code Snippet – VB.NET
Private Sub DateTimePicker1_Enter(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles DateTimePicker1.Enter
Dim fmt As DateTimePickerFormat = DateTimePicker1.Format
DateTimePicker1.Format = DateTimePickerFormat.Long
DateTimePicker1.Format = DateTimePickerFormat.Custom
DateTimePicker1.Format = fmt
End Sub
Code Snippet – C#
private void dateTimePicker1_Enter(object sender, EventArgs e)
{
DateTimePickerFormat fmt = dateTimePicker1.Format;
dateTimePicker1.Format = DateTimePickerFormat.Long;
dateTimePicker1.Format = DateTimePickerFormat.Custom;
dateTimePicker1.Format = fmt;
}
Design Patterns Interview Questions #2
Feb 13th
Q1. What are design patterns? Ans. A pattern is a proven (and recurring) solution to a problem in a context. Each pattern describes a problem which occurs over and over again in our environment, and describes its solution to this problem in such a way that we [...]
ASP.NET AJAX Interview Questions
Feb 13th
The ASP.NET AJAX Interview Questions contains the most frequently asked questions in ASP.NET AJAX. These lists of questions will gauge your familiarity with the ASP.NET AJAX platform.
What is Ajax?
The term Ajax was coined by Jesse James Garrett and is a short form for "Asynchronous Javascript and XML". Ajax represents a set of commonly used [...]
Design Patterns Interview Questions #1
Feb 13th
What is a Design Pattern?
Design Pattern is a re-usable, high quality solution to a given requirement, task or recurring problem. Further, it does not comprise of a complete solution that may be instantly converted to a code component, rather it provides a framework for how to solve a problem. In [...]
