Blog Stats
  • Posts - 157
  • Articles - 0
  • Comments - 90
  • Trackbacks - 19

 

.NET Framework

Unable to open shim database version registry key - v2.0.50727.00000

One of our .NET developers had problems with a ASP.NET application on his machine. Looking at the event viewer there was the following entry:Description: The description for Event ID ( 0 ) in Source ( .NET Runtime ) cannot be found. The local computer may not have the necessary registry information or message DLL files to display messages from a remote computer. You may be able to use the /AUXSOURCE= flag to retrieve this description; see Help and Support for details. The following information is...
  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

Intellisense doesn't show System.Windows.Forms.Form.Closed event (.NET 2.0)

Why doesn't the IntelliSense show the Closed event of a form in WinForms 2.0 application?You don't see this member because it is decorated with the EditorBrowsable attribute passing the enum value EditorBrowsableState.Never to its constructor. The IntelliSense engine in Visual Studio doesn't show members that are marked as Never. This doesn't mean that you can't use this event because you can.Why did the designers decide to mark the Closed event as being never browsable? The answer...
  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

Microsoft .NET Framework 3.0 RTM downloads

Microsoft has release a couple of .NET Framework 3.0 RTM related downloads:Microsoft .NET Framework 3.0 Redistributable PackageMicrosoft .NET Framework 3.0 ReadmeVisual Studio 2005 extensions for .NET Framework 3.0 (Windows Workflow Foundation)Microsoft® Windows® Software Development Kit for Windows Vista™ and .NET Framework 3.0 Runtime ComponentsVisual Studio 2005 extensions for .NET Framework 3.0 (WCF & WPF), November 2006 CTPRemarkable is the CTP of the Visual Studio 2005 extensions...
  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

Equals() vs the equality operator (==)

There have been many discussions in the past about when to use the Equals() vs the equality operator when comparing value and reference types and I had one discussion today as well that were performance related to Equals() vs == comparisons.First let's take a look about what the MSDN Library has to say about the Equals() method (especially in the remarks section):The default implementation of Equals supports reference equality for reference types, and bitwise equality for value types. Reference...
  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

List of known .NET languages

Here is a list of known .NET languages excerpted from http://www.gotdotnet.com/te... IL Assembler Serge Lidin's book - .NET IL AssemblerAdaAdaAPLDyalog APLAsmLAsmL is the Abstract State Machine Language for .NETCAMLMicrosoft Research F#CobolFujitsu CobolDelphiBorland DelphiForthDelta ForthEiffelInteractive Software Engineering Eiffel for .NETFortranLahey/Fujitsu Fortran for .NETFortranSalford FTN95 for Microsoft .NETHaskellHugs98 for .NETLispDotLisp - Lisp dialect for .NETLuaLua.NET embedded...
  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

Walkthrough: Creating a Windows Service Application in the Component Designer

Step-by-step instructions on creating and installing a Windows Service as a refresher:Walkthrough: Creating a Windows Service Application in the Component Designer Cross-posted from The .NET Aficionado
  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

.NET Framework 2.0 System.Web.Dll Security Update

Well I was a bit surprised about this update especially since I didn't read about it on any of the blogs in my RSS Feedreader. Apparently Microsoft released yesterday (10th October 2006) a Security Update for System.Web.dll. Apparently there is a cross-site scripting vulnerability (categorized as moderate risk) that allows malicious users to compromise a computer running ASP.NET 2.0 and in doing so steal confidential data. Versions 1.0 and 1.1 of the .NET Framework are not affected. I guess that...
  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

Free collection of 3 * 2 hour clinics on .NET Framework 3.0 (WPF, WF, WCF)

I got this link from the USA based ISV Developer Evangelism blog. You can now download Free Microsoft E-Learning stuff on Microsoft .NET Framework 3.0:Collection 5134 : Developing Rich Experiences with Microsoft® .NET Framework 3.0 and Visual Studio® 2005 This collection of 3 2-hour premium clinics teaches about the new capabilities provided by the .NET Framework 3.0. These clinics are for experienced Developers and Software Architects who are looking to adopt Microsoft's next generation...
  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

System.TimeZone2 ?

These last couple of days a discussion has been started on how to call the new TimeZone datatype in the Base Class Library that supports the new TimeZone API's from Windows Vista. The team responsible is going for the name TimeZone2. If I had to choose a smiley to go with this new name I would not know which one to choose from these: [:O] [:(] [:S] [:|] [:'(] [:$] [:@] [:^)] [8o|] [^o)] [+o(] [*-)] [8-)]. This is the WTF of the week! Omer van Kloeten has nicely summarized the related blog...
  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

DataGridView control does not show the column's friendly names

Today someone came with the following question:I have a DataSet with a DataTable and I have set the property Caption of the DataColumn "InvNbr" to "Invoice Number". However when I bind my DataSet to the DataGridViewControl it will show the Name property of the DataColumn instead of the Caption and according to the MSDN Library the Caption property should be used to display a friendly-name, no?He was right about the fact that the Caption property should be used by UI controls for...
  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

Full .NET Framework Archive

 

 

Copyright © Gabriel Lozano-Morán