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
Advanced search options...
Search In:
Everything
Blogs
Forums
People
Groups
Places
Pages
Date range:
All Time
Last Year
Last 6 Months
Last 3 Months
Last Month
Last Week
Last Two Days
Tags
.NET
Application Development
Async
Config
Deployment
Environment
RIA
Silverlight
SQL
Telerik
TFS
Tools
Visual Studio
VSTS
WCF
Web
Archive
Archives
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)
December, 2005
MSDN Blogs
>
AppDev: Something You Should Know by Irena Kennedy
>
December, 2005
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
Be back Jan. 3, 2006
Posted
over 7 years ago
by
irenake
0
Comments
Folks, thanks to all of you who read my posts, and special thanks for those of you who make it a part of your daily routine. I’m taking some time off for the holidays, but will be back Jan 3rd. Look forward to receiving your comments and seeing your ratings...
AppDev: Something You Should Know by Irena Kennedy
SYSK 31: Wondering what is vhost.exe, and why you need it? Then read on…
Posted
over 7 years ago
by
irenake
4
Comments
By default, when you build a Visual Studio 2005 project, you get two executables created, the “normal” one (your windows application) and then the one with vhost.exe appended to the end of your application name, e.g. WindowsApplication1.vhost.exe. ...
AppDev: Something You Should Know by Irena Kennedy
SYSK 30: Differences between SET and SELECT in SQL Server
Posted
over 7 years ago
by
irenake
5
Comments
I came across a great post with same title by Narayana Vyas Kondreddi at http://vyaskn.tripod.com/differences_between_set_and_select.htm . Great info, very well presented. Below are some key points from the article: 1. SET is the ANSI standard way...
AppDev: Something You Should Know by Irena Kennedy
SYSK 29: The Power of Ctrl+Shift+N
Posted
over 7 years ago
by
irenake
1
Comments
Did you know that Ctrl+Shift+N clears formatting of the selected text in Microsoft Word. No more mousing over to the Style drop-down, and scrolling to the Clear Formatting option… a quick key-press does it!
AppDev: Something You Should Know by Irena Kennedy
SYSK 28: Do you know about ‘Anonymous Methods’? If not, read on…
Posted
over 7 years ago
by
irenake
0
Comments
Have you ever created a delegate that has just a couple of lines of code? If yes, in .NET 2.0 you could’ve put that code right “in-line” as demonstrated below: class MyForm : Form { ListBox listBox; TextBox textBox; Button addButton; public MyForm...
AppDev: Something You Should Know by Irena Kennedy
SYSK 27: What you need to know about referenced assemblies in VS2005
Posted
over 7 years ago
by
irenake
4
Comments
Summary: Visual Studio has a new property for assembly references – Specific Version. When this property is set to True, Visual Studio 2005 will only build the client if it has access to the same version of the referenced assembly of when the reference...
AppDev: Something You Should Know by Irena Kennedy
SYSK 26: Want to see DataGrid-like view of the contents of your DataSets right from within the debugger?
Posted
over 7 years ago
by
irenake
0
Comments
Visual Studio 2005 makes it a mouse-click away… Just mouse over the DataSet variable in your code, wait for the IntelliSense tooltip to show up, and then expand it by clicking the little down arrow sign (not the + sign, which gives you functionality akin...
AppDev: Something You Should Know by Irena Kennedy
SYSK 25: What happened to ObjectSpaces (object-relational mapping technology), and what is it, anyway?
Posted
over 7 years ago
by
irenake
0
Comments
For those who are not familiar with the term, ObjectSpaces refers to a technology representing an abstraction layer between business objects (strong typed classes) and a relational database, which instantiates and populates custom objects from a relational...
AppDev: Something You Should Know by Irena Kennedy
SYSK 24: ?? operator. Is it new to you?
Posted
over 7 years ago
by
irenake
1
Comments
Did you know that C# now has a new operator ?? ? It has to do with the support for nullable data types. A nullable type can contain a value, or it can be undefined. The ?? operator defines the default value to be returned when a nullable type is assigned...
AppDev: Something You Should Know by Irena Kennedy
SYSK 23: DropDownList with ToolTip that Automatically Shows Up as You Mouse-Over the Items in the Dropped Down List
Posted
over 7 years ago
by
irenake
18
Comments
Ever wished you had a freeware DropDownList control that, instead of having one hardcoded tool tip, changed the tool tip text as the user moves from item to item in the dropped down list? Well, your wait is over. I’m enclosing the code for such a control...
AppDev: Something You Should Know by Irena Kennedy
SYSK 22: Detecting a Change in Network Connectivity
Posted
over 7 years ago
by
irenake
0
Comments
The NetworkChange class (new in .NET 2.0 framework) allows applications to receive notification when the Internet Protocol (IP) address of a network interface, also known as a network card or adapter, changes. An interface address can change for a variety...
AppDev: Something You Should Know by Irena Kennedy
SYSK 21: How slow is invoking properties via reflection?
Posted
over 7 years ago
by
irenake
0
Comments
Ok, so we all know that reflection (run time discovery and invocation), a concept somewhat akin to late binding from COM days, is slower than calling those methods and properties directly (early binding, to continue the analogy). But how much slower is...
AppDev: Something You Should Know by Irena Kennedy
SYSK 20: Testing UserControls without writing a line of code
Posted
over 7 years ago
by
irenake
2
Comments
In VS2005, you can test a user control using a tool called UserControl Test Container. If you have a control library project in VS, you can hit F5 and it will launch the Test Container. The Test Container allows you to select the control you want to...
AppDev: Something You Should Know by Irena Kennedy
SYSK 19: Confused about Forward and Backward Compatibility? Then read this...
Posted
over 7 years ago
by
irenake
1
Comments
Forward compatibility means that an application can be compiled and run on both later and earlier versions of the .NET Framework. Can your application, compiled using VS2005 (.NET 2.0) run without any problems on .NET 1.1? If yes, it’s forward compatible...
Page 1 of 1 (14 items)