Lambda Expressions

YouTube
- Lambda Expressions. What are they good for.

CSharp Extension Methods

YouTube
- CSharp Extension Methods

Reflection – Accessing Methods

YouTube
- Reflection – Accessing Methods

Simplifying Reflection with Interfaces

YouTube
- Simplifying Reflection with Interfaces

Automatically Implementing Interfaces

YouTube
- Automatically Implementing Interfaces

Free Image Galleries for your website

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

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

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

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

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 [...]