by Johan Meyer | Dec 5, 2013 | .NET, Development
A few people asked me recently how you can add a custom control inside a GridView and then allow two-way data binding to this custom user control. In this very short post I will explain how to do two-way data binding using .Net Framework 4.5, SQL and C#. I have also...
by Johan Meyer | Mar 6, 2012 | .NET, Development, Visual Studio
After upgrading my Visual Studio 2008 to Visual Studio 2010 my server explorer decided to give me the following error. An unexpected error occurred in the .NET framework data provider for Microsoft SQL Server Compact. Please contact the provider vendor to resolve this...
by Johan Meyer | Mar 6, 2012 | .NET, Development, Reporting, Tips & Tricks
Have you ever wanted to create a report that enables you to print mailing labels? Well I will show you how to create a Microsoft Report Viewer report in Visual Studio that looks like the one in the Fig 1.1 Fig 1.1 For window forms you can try this link, I have tested...
by Johan Meyer | Mar 5, 2012 | Development, TFS
Out of the box there is no way to delete work items inside Team Foundation Server 2010. Does this mean that it is not possible? No, you still have the Team Foundation Server Power tools which add some commands that allow you to delete work items and work item types....
by Johan Meyer | Mar 2, 2012 | .NET, Development
Have you ever tried creating an image from text in C# .net. Well the .NET framework provides System.Drawing and System.Drawing.Graphics classes which helps us to generate an image from text. Below is the code: private Bitmap CreateBitmapImage(string sImageText) {...