Welcome to MSDN Blogs Sign in | Join | Help

December 2005 - Posts

Be back Jan. 3, 2006

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
Posted by irenak | 0 Comments

SYSK 31: Wondering what is vhost.exe, and why you need it? Then read on…

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. vhost
Posted by irenak | 4 Comments

SYSK 30: Differences between SET and SELECT in SQL Server

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 of
Posted by irenak | 5 Comments

SYSK 29: The Power of Ctrl+Shift+N

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!
Posted by irenak | 1 Comments

SYSK 28: Do you know about ‘Anonymous Methods’? If not, read on…

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() {
Posted by irenak | 0 Comments

SYSK 27: What you need to know about referenced assemblies in VS2005

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
Posted by irenak | 4 Comments

SYSK 26: Want to see DataGrid-like view of the contents of your DataSets right from within the debugger?

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
Posted by irenak | 0 Comments

SYSK 25: What happened to ObjectSpaces (object-relational mapping technology), and what is it, anyway?

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
Posted by irenak | 0 Comments

SYSK 24: ?? operator. Is it new to you?

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
Posted by irenak | 1 Comments

SYSK 23: DropDownList with ToolTip that Automatically Shows Up as You Mouse-Over the Items in the Dropped Down List

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
Posted by irenak | 18 Comments

Attachment(s): DropDownListWithToolTip.zip

SYSK 22: Detecting a Change in Network Connectivity

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
Posted by irenak | 0 Comments

SYSK 21: How slow is invoking properties via reflection?

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
Posted by irenak | 0 Comments

SYSK 20: Testing UserControls without writing a line of code

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 test,
Posted by irenak | 2 Comments

SYSK 19: Confused about Forward and Backward Compatibility? Then read this...

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.
Posted by irenak | 1 Comments
 
Page view tracker