Sign in
AppDev: Something You Should Know by Irena Kennedy
Everything that is related to application development, and other cool stuff...
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Tags
.NET
Application Development
Async
Config
Deployment
Environment
RIA
Silverlight
SQL
Telerik
TFS
Tools
Visual Studio
VSTS
WCF
Web
Archive
Archives
September 2012
(2)
March 2012
(1)
January 2012
(2)
April 2011
(1)
March 2011
(2)
October 2010
(1)
September 2010
(1)
August 2010
(2)
December 2009
(4)
November 2009
(1)
September 2009
(1)
June 2009
(2)
April 2009
(1)
December 2008
(2)
February 2008
(1)
October 2007
(3)
September 2007
(1)
August 2007
(7)
July 2007
(5)
June 2007
(8)
May 2007
(19)
April 2007
(42)
March 2007
(43)
February 2007
(33)
January 2007
(21)
December 2006
(7)
November 2006
(20)
October 2006
(22)
September 2006
(20)
August 2006
(23)
July 2006
(19)
June 2006
(12)
May 2006
(22)
April 2006
(20)
March 2006
(23)
February 2006
(20)
January 2006
(21)
December 2005
(14)
November 2005
(19)
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
AppDev: Something You Should Know by Irena Kennedy
SYSK 285: Is JavaScript an Object Oriented Programming Language?
Posted
over 6 years ago
by
irenake
4
Comments
First, let’s agree on a definition of object oriented programming. It is generally agreed that “software objects” share two characteristics: they all have state and behavior (similar to real-life objects). Behavior is implemented through methods...
AppDev: Something You Should Know by Irena Kennedy
SYSK 284: Calculating WeekOfYear in C# Using 1 Line of Code Without Referencing Microsoft.VisualBasic.dll
Posted
over 6 years ago
by
irenake
2
Comments
What week number (1 through 53) does January 6 th 2008 belong to using the standard US calendar with Sunday being the first day of the week? If you answered ‘1’, that’s incorrect – since Jan. 01, 2008 starts on a Tuesday, Jan. 06 th falls on Sunday and...
AppDev: Something You Should Know by Irena Kennedy
SYSK 283: Use Caution When Using ‘Short’ Data Type in Enumerated Types
Posted
over 6 years ago
by
irenake
0
Comments
Consider the following innocent looking code: [System.Runtime.Serialization. DataContract ] public enum TestEnum : short { [System.Runtime.Serialization. EnumMember ] Undefined = 0, [System.Runtime.Serialization. EnumMember ] TestType1...
AppDev: Something You Should Know by Irena Kennedy
SYSK 282: How JSON is Making Your Code Cleaner
Posted
over 6 years ago
by
irenake
0
Comments
Say, you have to pass in a large number of data elements into a web service (to me, more than 5 is “many”). You have a few options – pass them as individual parameters, put them all into one custom serializable class (e.g. MyMethodRequest object), pass...
AppDev: Something You Should Know by Irena Kennedy
SYSK 281: Windows Presentation Foundation (WPF): The Missing LinkButton
Posted
over 6 years ago
by
irenake
5
Comments
To my surprise, System.Windows.Controls does not have LinkButton! Perhaps Windows forms shouldn’t use links? But since my UI design team insisted on having them, I’ve created my own LinkButton (code below)… As always – use at your own risk… this code...
AppDev: Something You Should Know by Irena Kennedy
SYSK 280: ControlChars in C# Without Using Microsoft.VisualBasic Assembly
Posted
over 6 years ago
by
irenake
5
Comments
Microsoft.VisualBasic namespace has a handy class, ControlChars, with the following public fields: Back, Cr, CrLf, FormFeed, Lf, NewLine, NullChar, Quote, Tab, VerticalTab. After seeing some C# developers use it just for the simplicity of code like this...
AppDev: Something You Should Know by Irena Kennedy
SYSK 279: What’s New in the World of Database Tuning?
Posted
over 6 years ago
by
irenake
0
Comments
Did you know that SQL 2005 Database Engine Tuning Advisor (replacement for SQL 2000 Index Tuning Wizard) can do its analysis using production server’s hardware configuration information, metadata and statistics, but perform the actual tuning on a test...
AppDev: Something You Should Know by Irena Kennedy
SYSK 278: How-To Use Windows Live Search on Your SharePoint Site
Posted
over 6 years ago
by
irenake
0
Comments
I just came across an excellent post by Ian Morrish that gives simple step-by-step instructions (with images!) on how to integrate with Windows Live search. First, download the SDK and create an application ID at http://search.msn.com/developer...
Page 2 of 2 (33 items)
1
2