Tag: Visual Studio

Visual Studio 2012 Color Theme

First thing first, here is the tool : http://visualstudiogallery.msdn.microsoft.com/366ad100-0003-4c9a-81a8-337d4e7ace05 Install via Extension Manager (Tools/Options) Install via Visual Studio Gallery.com (download and open directly or save then double-click) Install via “xcopy” into %appdata%\Local\Microsoft\VisualStudio\10.0\Extensions For Visual Studio 2012 Express, check this link : http://alinconstantin.blogspot.be/2012/09/using-color-themes-with-visual-studio.html How to change Icons : http://vsip.codeplex.com/

[HowTo] Find the Component Container

[Browsable(true)] [Category(“Data”), Description(“The parent container, usually the form, that contains the controls on which the ErrorProvider can display error icons “), Localizable(true)] public ContainerControl ContainerControl { get { return _containerControl; } set { _containerControl = value; } } public override ISite Site { get { return base.Site; } set { base.Site = value; if (value […]

The type initialized for ‘SingletonCreator’ threw an exception or System.BadImageFormatException

You are using GreatMap.Net (Gmap.net) in visual studio and you eventually have one of those error messages : The type initialized for ‘SingletonCreator’ threw an exception System.BadImageFormatException Don’t worry there is a solution… The type initialized for ‘SingletonCreator’ threw an exception Simply add this useLegacyV2RuntimeActivationPolicy=”true” in your app.config file in the <Startup> tag in order […]