Land Rovers, .Net en meer!
.Net
Alles over .Net en wat er maar mee te maken heeft
TFS2010 VSSConverter woes
24 Oct
Yesterday I’ve been busy installing the Beta 2 of Team Foundation Server 2010 to do some testing and to see if we can switch (yay go-live!). And in fact the installing went pretty smooth so the work Microsoft has been doing is really great.
Unfortunately when I decided it was time to move our Visual Source Safe database to TFS all went sour. The analysis of the VSS database with the VSSConverter tool worked but when I tried to migrate it just sat there and told me:
TF60070: Unable to connect to the Team Foundation Server: ‘http://ts01:8080/’. Please ensure that the Team Meer >
Binding a WPF DataGridColumn to a LINQ result
26 Aug
I’ve been tinkering with Visual Studio 2010 Beta1 and the .Net 4 framework. One of the things that I’ve tried is filling a DataGrid with the results of a LINQ query. Consider the following code: C#
var voyages = from voyage in entities.Voyage
select new { Number = voyage.Number, ETA = voyage.StartTime };
dataGridTest.ItemsSource = voyages;
XAML
<DataGrid Name="dataGridTest">
<DataGrid.Columns>
<DataGridTextColumn Header="Number" Binding="{Binding Path=Number}" />
<DataGridTextColumn Header="ETA" Binding="{Binding Path=ETA}" />
</DataGrid.Columns>
</DataGrid>
Seems straightforward enough, doesn’t it? Well it does but when you try to run it, it’ll crash and burn with the following exception:
InvalidOperationException: A TwoWay or OneWayToSource binding cannot Meer >
iPhone, youPhone?
03 Jun
een beetje vreemd is het wel een microsoft ontwikkelaar die geen windows mobile telefoon heeft. Je zou haast kunnen zeggen dat het heulen met de vijand is. Eigenlijk heeft het nog een doel ook en dat is laten zien dat je zelfs op het Apple platform .Net applicaties kunt bouwen. Eerst maar eens verder spelen voordat ik me daar aan ga wagen. Oh en voor diegenen die al langer op een berichtje van mij zitten te wachten: eind van het weekend komt er wat aan dus even geduld nog.