|
|
Browse by Tags
All Tags » Microsoft » code
Showing page 1 of 2 (13 total posts)
-
Had been getting this recently in our builds, and have finally tracked it down to conflicting versions of the Microsoft.ReportViewer.Common.dll in our project references. This came about as one of our developers was using VS 2010, but the rest were still back on VS 2008.
Anyway, I thought I’d blog around how we traced this issue down in the end, ...
-
Online events and recordings of previous events can be found here…
http://uktechdays.cloudapp.net/home.aspx
-
Finally managed to figure out how to get virtualization to actually behave itself in a listbox wpf control.
Turns out that in order for Virtualization to work, you need three things satisfied.
1) Use a control that supports virtualization (e.g. list box or list view). (see Controls That Implement Performance Features section at bottom of ...
-
Even though x:Name is a dependency property for a WPF framework element, you cannot the name of the control to a static resource in the code behind file <Window x:Class="WpfApplication2.Window1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" ...
-
A while ago on the project I’ve been working on recently, I was having issues with my development environment which for some reason had stopped wanting to deploy our database project to my newly created sql server 2008 instance.
This was on a new build of a machine that I had previously used, but had decided to upgrade the operating system on. As ...
-
There's 2 products (both with free versions) you can use for T4 intellisense:
One is by Clarius at http://www.visualt4.com/. But best to go with Tangible's T4 editor at http://t4-editor.tangible-engineering.com/T4-Editor-Visual-T4-Editing.html (available through the Extension Manager in VS2010 under tools).
Also if you want to get a bit more ...
-
SQL 2008 introduces the new DATE data type, and it is considerable quicker to CAST a DATETIME to this if you’re attempting to just extract the date part from a DATETIME field, than using the old method of
SELECT CONVERT(DATETIME,CONVERT(CHAR,GETUTCDATE(),102))
So from SQL 2008 onwards this can now be written as
SELECT CAST(GETUTCDATE() AS ...
-
Just came across a great article on the web when searching for topics relating to Thread safety.
http://msdn.microsoft.com/en-us/magazine/cc188793.aspx#S2
-
If you have issues whereby the installation of Windows Phone Developer Tools wont install as it says it is already installed, when attempting to install the April refresh, then look here for the solution… Aaron Stebner's WebLog XNA Game Studio Cleanup Tool User's Guide http://blogs.msdn.com/astebner/pages/9544320.aspx
-
using System;
using System.Collections.Generic;
using System.Text;
using System.Data;
using System.IO;
namespace DataSetSerializer
{
class Program
{
static void Main(string[] args)
...
1
|
|
|