Solomon

This user hasn't shared any biographical information

Homepage: http://www.oyangudi.com


Posts by Solomon

Lambda Expressions

March 6, 2010 - 10:24 pm

Posted in Video Tutorials | No comments

YouTube – Lambda Expressions. What are they good for.

CSharp Extension Methods

March 6, 2010 - 10:14 pm

Posted in Video Tutorials | No comments

YouTube – CSharp Extension Methods

Reflection – Accessing Methods

March 6, 2010 - 9:24 pm

Posted in Video Tutorials | No comments

YouTube – Reflection – Accessing Methods

Simplifying Reflection with Interfaces

March 6, 2010 - 9:18 pm

Posted in Video Tutorials | No comments

YouTube – Simplifying Reflection with Interfaces

Automatically Implementing Interfaces

March 6, 2010 - 9:02 pm

Posted in Video Tutorials | No comments

YouTube – Automatically Implementing Interfaces

Free Image Galleries for your website

March 6, 2010 - 10:22 am

Posted in Web Design | No comments

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

March 5, 2010 - 9:24 am

Tags:
Posted in C#, VB.NET | No comments

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

Design Patterns Interview Questions #2

February 13, 2010 - 7:30 am

Posted in Design Patterns | No comments

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 can use this solution a lots of times. [...]

ASP.NET AJAX Interview Questions

February 13, 2010 - 6:27 am

Posted in Interview Questions - AJAX | No comments

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

Design Patterns Interview Questions #1

February 13, 2010 - 6:17 am

Posted in Design Patterns | No comments

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 1994, the release of [...]