Solomon

Solomon

(4 comments, 65 posts)

Greetings in the name of our Lord Jesus Christ.

I'm Solomon from a small village of south India called Oyangudi. I'm working as a software developer for more than 10 years.

God Bless!

Home page: http://www.oyangudi.com

Posts by Solomon
SQL Server

Comma Delimited Output – single select statement – SQL Server

0

 

We can get a comma delimited output from a single select statement in SQL Server by using the following SQL Script.


select  stuff(( select  ',' + CountryRegionCode
                from    Person.CountryRegion
              for
                xml path('')
              ), 1, 1, '') as CodeList

 

Video-Clip

Lambda Expressions

0
Video-Clip

CSharp Extension Methods

0
Video-Clip

Reflection – Accessing Methods

0
Video-Clip

Simplifying Reflection with Interfaces

0
Video-Clip

Automatically Implementing Interfaces

0
Web

Free Image Galleries for your website

0

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

.NET

DateTimePicker – reset focus

1

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;
        }

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
Question

Design Patterns Interview Questions #2

0

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. In simple words, there are a lot of common problems which a lot of developers have faced over time. These common problems ideally should have a common solution too. It is this solution when documented and used over and over becomes a design pattern. More >

Question

ASP.NET AJAX Interview Questions

0

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 techniques, like HTML/XHTML, CSS, Document Object Model(DOM), XML/XSLT, Javascript and the XMLHttpRequest object, to create RIA’s (Rich Internet Applications).

Ajax gives the user, the ability to dynamically and asynchronously interact with a web server, without using a plug-in or without compromising on the More >

Solomon's RSS Feed
Go to Top