Archive for February, 2010

Visual Studio 2010 editions - naming

Visual Studio 2010
Contents

Professional Edition
Meaning is almost same as present. Includes features necessary for the development. A cheap edition.

Premium Edition
Kind of enhanced Team Edition for Developers. It includes all the good features of Developer & Database editions and few features from tester edition

Ultimate Edition
Everything! Can say an equivalent for existing ‘Team Suite’.

 
Official release of Visual Studio [...]

Leave a Comment

Load user controls dynamically with ASP.NET

ctrl_homegadget ctrl
= (ctrl_homegadget) LoadControl("ctrl_homegadget.ascx");
ctrl.Border = false;
ctrl.Title = "Hello";
pnlGedgets.Controls.Add(ctrl);

VN:F [1.1.6_502]Rating: 0.0/5 (0 votes cast)

Leave a Comment

MCPD – Microsoft Certification

More details: http://www.microsoft.com/learning/en/us/certification/mcpd.aspx
You can choose either
1. Win developer or
2. Web (asp.net) developer or
3. Enterprise Application Developer
MCPD in Enterprise application stream is the super one but you have to cover 6 papers. Other streams need 3 papers each.
Exams:

70-536

70-505

70-563

70-562

70-564

70-561

70-503

70-565

Windows Developer

?

?

?

 
 
 
 
 

Web Developer

?

 
 

?

?

 
 
 

Enterprise Application Developer

?

?

 

?

 

?

?

?

VN:F [1.1.6_502]Rating: 0.0/5 (0 votes cast)

Leave a Comment

Run WCF service (service.svc) on IIS7

Do you get:
HTTP Error 403.14 - Forbidden
The Web server is configured to not list the contents of this directory.

You need to call Windows Communication Foundation Installation Utility.
Just execute this:
C:\Windows\Microsoft.NET\Framework\v3.0\Windows Communication Foundation> ServiceModelReg.exe -i

VN:F [1.1.6_502]Rating: 0.0/5 (0 votes cast)

Leave a Comment

Strip SQL Comments using RegularExpression with C#

Here is the code:

Regex r
= new Regex(@"(/\*([^*]|[\r\n]|(\*+([^*/]|[\r\n])))*\*+/)|(–.*)");
textBox2.Text
= r.Replace(textBox1.Text, string.Empty);

VN:F [1.1.6_502]Rating: 0.0/5 (0 votes cast)

Leave a Comment

Free e-book – First Look: Microsoft Office 2010

Download here.
VN:F [1.1.6_502]Rating: 0.0/5 (0 votes cast)

Leave a Comment

Visual Studio 2010 and .NET Framework 4 Training Kit

 
The Visual Studio 2010 and .NET Framework 4 Training Kit includes presentations, hands-on labs, and demos. This content is designed to help you learn how to utilize the Visual Studio 2010 features and a variety of framework technologies including:

C# 4.0
Visual Basic 10
F#
Parallel Extensions
Windows Communication Foundation
Windows Workflow
Windows Presentation Foundation [...]

Leave a Comment

SQL - Time bomb coding

Worth reading.
URL: http://www.sqlservercentral.com/articles/Performance+Tuning/69337/
VN:F [1.1.6_502]Rating: 0.0/5 (0 votes cast)

Leave a Comment

Manipulate TFS from VB.NET – a starter

Here is a quick script which demonstrates how to connect to TFS and get projects. Make sure you add reference to necessary dlls - Microsoft.TeamFoundation.Client and Microsoft.TeamFoundation.WorkItemTracking.Client

Imports Microsoft.TeamFoundation.Client
Imports Microsoft.TeamFoundation.WorkItemTracking.Client
Imports System.Net
 
Public Class Form1
Dim nc As NetworkCredential = New NetworkCredential("user", "pass")
Dim tfsurl As New Uri("http://192.168.0.2:8080")
Dim [...]

Leave a Comment

WTF???

VN:F [1.1.6_502]Rating: 0.0/5 (0 votes cast)

Leave a Comment