Showing posts with label visual studio 2010. Show all posts
Showing posts with label visual studio 2010. Show all posts

Tuesday, May 14, 2013

See What Other Users Have Checked Out in TFS

I found the answer on Adam Prescott's blog

Prerequisites

Visual Studio Team Foundation Power Tools – With Visual Studio 2010 – in the Tools menu, select Extension manager. Download the Power tools and install (close VS 2010)

image

See what others have checked out

After the installation of the tools has finished:

  • run VS 2010
  • open the Source control explorer window
  • In the VS 2010 main menu, select File / Source control / Find In Source Control / Status…
    image
  • In the dialog box, leave the path to $/ to find checked out sources in all workspaces, click on ‘find’
    image
  • You’ll be presented a list of files with the user names that are checked out

Friday, November 30, 2012

Check VAT numbers Webservice hosted by EU

There is a webservice hosted by the European Union to check VAT numbers for any of the member states: http://ec.europa.eu/taxation_customs/vies/checkVatService.wsdl

An example of how to make use of this in Visual Studio was written VIES VAT number checker by Christian Kleinheinz.

Friday, January 29, 2010

Visual Studio 2010 beta 2


Visual studio difference between Silverlight Navigation application and Business application

Silverlight Business application adds login/logout support.

Using partial classes to spread a Domain Service across multiple files

Problem

You need a few extra methods in the Domain Service generated from the entity model, most often because you want to create selection methods with other criteria for filtering. You can add these in the Domain Service class. But if for some reason your entity model changes then the Domain Service needs to be regenerated too, causing all your custom code to disappear.

Solution

Create a partial class to spread a Domain Service across multiple files.
Modify the generated Domain Service class to partial, e.g.
[EnableClientAccess()]
public partial class NorthwindDomainService : LinqToEntitiesDomainService<northwindEntities>
{
Add a new class to the web project, with the same class name but with the extension 'partial.cs' instead of '.cs', e.g.
public partial class NorthwindDomainService : LinqToEntitiesDomainService<northwindEntities>
{
Add the using statements from the generated class to your custom class.
In case you need to regenerate the entity model and the class, you only have to add the word 'partial' to your generated Domain Service class. Your custom class will be kept as is.

Visual Studio 2010 Beta 2 DataGrid bug

Visual Studio 2010 Beta 2 has a little bug that when creating the DataGrid control it added subcontrols <controls:DatePicker in the "controls" namespace which is properly set to

xmlns:controls="clr-namespace:System.Windows.Controls; assembly=System.Windows.Controls"
but it didn't add a reference to the required library "c:\Program Files\Microsoft SDKs\Silverlight\v4.0\Libraries\Client\System.Windows.Controls.dll"
Add this reference manually.



Thursday, January 28, 2010

Silverlight application themes for Silverlight 4

I have used the silverlight application themes from Tim Heuer in the Visual Studio 2010 beta with Silverlight 4 and they work.

  • Put the Style.xaml that you downloaded from one of the themes in the Assets folder of your Silverlight project.
  • Overwrite the existing one.
  • In VS 2010 select the Style.xaml and change the property Copy to output directory into 'Copy always'.