Archive for the ‘DOTNET’ Category

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

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

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

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

Get list of WinForms Controls from an assembly

Here is the sample code.

private void ShowControlsFromAssembly(string assemblyfile)
{
Assembly assembly = Assembly.LoadFrom(assemblyfile);
Type[] et = assembly.GetExportedTypes();
[...]

Leave a Comment

What’s New in Visual Studio 2010?

Visual Studio is on its way to development centers already. Let us have a quick look on some major features and enhancements this new version give.
Note that the product is still in beta at the time of writing this blog. Also writing everything about this product is definitely out of scope and please use some [...]

Leave a Comment

Download Visual Studio 2010 and .NET Framework 4 Training Kit

URL: http://www.microsoft.com/downloads/details.aspx?FamilyID=752CB725-969B-4732-A383-ED5740F02E93&displaylang=en
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 [...]

Leave a Comment

Visual Studio 2008 – WPF Designer not found?

Some people may face this. Seems some packages failed to load. Just do the trick:
devenv.exe /setup

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

Leave a Comment

Get currently logged in user from a service running under LocalSystem account

Here goes the sample code:

using System.IO;
using System.Management;
using System.ServiceProcess;
 
namespace MyTestService
{
public partial class MyTestService : ServiceBase
{
public MyTestService()
{
InitializeComponent();
[...]

Leave a Comment