Posts by Solomon
DateTimePicker – reset focus
1Code 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
Design Patterns Interview Questions #2
0Q1. 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 >
ASP.NET AJAX Interview Questions
0The 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 >