Here is a list of links that can help to about Visual Studio 2010 features.
What's New
Visual Studio Product Group Blogs
Visual Studio ALM Rangers 2010 readiness materials
10-4 video shows
Upgrading from TFS 2005/2008 to TFS 2010
Team System 2010 Overview
Team Foundation Server 2010 Key Concepts
TFS 2010 Project Management
TFS 2010 Work Item Tracking
Debugging and Profiling features in Visual Studio 2010
Write Faster Code with VS 2010 Profiler
Multi-Tier Performance Analysis
Visual Studio 2010 Beta 1: Parallel Performance Tools Overview
A Branching and Merging Primer
New features to understand branching/merging
Favorite VS2010 Features: Dependency Graphs and DGML
Web and Load Tests
Web and Load Test features in Visual Studio 2010
Introducing the Microsoft Visual Studio Load Test Virtual User Pack 2010
Using The Virtual User Activity Chart to Understand the VS Load Engine
VSTS 2010 Feature: Load test virtual user activity visualization
Lab Management
What is new for Visual Studio Lab Management 2010 RC
Getting started with Lab Management (Part 1)
Getting started with Lab Management (Part 2)
Getting started with Lab Management (Part 3)
Getting started with Lab Management (Part 4)
Enable Lab Management features for existing Team Projects in Beta2
Customization of End to End (E2E) Workflow of Visual Studio Lab Management 2010 Beta2
Test Professional
What’s new in Test and Lab Management in VS 2010 Beta 2
What’s New for Testing Tools in the RC?
Elevating the Role of the Tester with Visual Studio 2010
Resources for Visual Studio 2010 Test Tools
VS2010 demos for testing tools – MTLM, CUIT and related features
Test planning using Camano
Remote Execution and Data Collection
Diagnostic Data Adapters: Changing how Developers and Testers work together (Part 1 of 2 - The Test Impact Collector)
Diagnostic Data Adapters: Changing how Developers and Testers work together (Part 2 of 2 - The Diagnostic Trace Collector)
The Microsoft Test Runner – innovation for the Generalist Tester
Platform Support for Coded UI Test (and Fast Forward feature of Test Runner)
Coded UI Test
Test Impact Walk-through
TFS API
Introducing the TfsConnection, TfsConfigurationServer and TfsTeamProjectCollection Classes
Labels: Visual Studio 2010
Uploading, Determining Size, Width and Height and Resizing Image Files with ASP.NET
Posted by Zafar Ullah - zafarjcp@gmail.com | 12:44 PM | ASP.NET, Image Resize, Image Upload, Thumbnail Generator | 0 comments »Almost every web site/portal has image upload facility on its forms i.e either its a social networking site or buy/sell site. Also their is one common need of image resize which play a vital role in look n feel of your displayed items, because e.g if a product site has 10 items on a single page but image size of each items is defferent then that look very bad and unprofessional. So i started to find so existing code/library and come across below given wonderful article by Faisal Khan.
Title: Uploading, Determining Size, Width and Height and Resizing Image Files with ASP.NET
Win Xp: Set Permissions On Files Or Folders
Posted by Zafar Ullah - zafarjcp@gmail.com | 12:49 PM | 0 comments »Set permissions on files or folders (Windows XP, Windows 2000)
To set permissions on individual files and on folders, you must use NTFS file system.
NTFS file system provides features such as: Encrypt files, Compress a file or folder, Disk quotas and Set permissions on files or folders.
To convert a drive (for example drive C) to NTFS go to command prompt and type>> convert C: /fs:ntfs
Note that you cannot simply convert it back to FAT or FAT32.
OK, enough
1-By default, Windows does not display Security tab in files or folders Properties. To enable this feature go to Folder Options and clear “Use Simple File Sharing” check box in view tab.
2- Right click on your file or folder and click Properties, click Security tab and set permissions. For additional permissions or inheritance information click on Advanced.
Show files and folder not working on Win XP
Posted by Zafar Ullah - zafarjcp@gmail.com | 10:06 AM | 0 comments »This Method is working perfectily
Go to the following registry key:
HKLM\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder\Hidden\SHOWALL
DELETE the value CheckedValue in the right window. (Its type should be REG_SZ and data should be 2.)
Now create a new DWORD value called CheckedValue (same as above, except that the type is REG_DWORD). Modify the value data to 1 (0x00000001).
This should let you change the "Hidden Files and Folders" option.
hibernate.StaleObjectStateException: Row was updated or deleted by another transaction (or unsaved-value mapping was incorrect)
Posted by Zafar Ullah - zafarjcp@gmail.com | 5:08 AM | Hibernate, NHibernate | 0 comments »This exception comes when ever any of your objects property have some invalid value i.e value that is not according to provided mapping of that object. e.g while handling optimistic concurrency if you didnt add Unsaved-value="-1" in your versin property i.e
then it leads to hibernate.StaleObjectStateException: Row was updated or deleted by another transaction (or unsaved-value mapping was incorrect)
because the requirment of version field is "-1" when in default state.