Culture ID 2155 (0x086B) is not a supported culture
I recently came across a VERY annoying problem on my personnal (this one) BlogEngine.Net blog.
What happened is that I installed some Windows Updates (a bunch) on my Windows Server 2003 server and then, every time I accessed an article of this blog I received this error message : Culture ID 2155 (0x086B) is not a supported culture. What a real annoying problem !!
I don't know the exact reason but what I know is that cultures are OS specific, so the Windows Update is the cause... it's not related to the .Net Framework so don't waste your time trying to reinstall the framework, it will not work.
The Solution...
Resintall the Service Pack 2 for your Windows Server 2003.
TreeNode bolded text gets cropped (clipped) in the .Net TreeView
If you use the TreeView that comes with the .Net Framework, you probably hit the following problem :

You add bold elements because you want some formatting, and what you see is that your bolded elements gets cropped. You try to set the NodeFont before and after setting the text of the node but nothing seem to make a change, so you decide to Google this and find this MSDN article (TreeNode.NodeFont property) that says in a note, "If the node font is larger than the Font property value set in the TreeView control, the tree node label text is clipped".
So what to do ? Simple solution !
You set the NodeFont property of the TreeView to a bolded font and then, when you add your nodes to your TreeView, you set the NodeFont property (of the nodes) to a non-bolded font (except for the bolded elements). You will then see what you expected :
