Tag Archives: .net

C# / .NET MessageBox is hidden behind the Form

Imagine calling the following C# code:MessageBox.Show(this, “Some text…”, “Title”, MessageBoxButtons.OKCancel); After executing this line, the Message Box is not visible, it seems like hidden behind your form, without input focus, mouse clicks cause default beeps, and it suddenly appears if … Continue reading

Posted in Programming | Tagged , , , | Leave a comment

.NET text box blank/empty/invisible/hidden when text reaches certain length

It seems, that .NET 2.0 have bug when text box (TextBox control) appears blank / empty / invisible / hidden — not showing text when text length reaches certain size. My quick tests shows, that the length of the text … Continue reading

Posted in Computers, Programming | Tagged , , , | Leave a comment

.NET Framework 2.0 is not installed on Windows 8 Developer Preview by default

.NET Framework 2.0 is not installed on Windows 8 Developer Preview by default. To install it, go to Control Panel – Programs – Turn Windows features on or off – Check ‘Microsoft .NET Framework 3.5.1′ – OK. Note, that .NET … Continue reading

Posted in OS | Tagged , | 7 Comments

Call to OpenFileDialog or SaveFileDialog hangs or freezes

Today I was debugging a very strange issue when call to OpenFileDialog and SaveFileDialog hanged, froze, never returned… At first I thought the problem is, that call is made from SysTray (Notification area) hidden window. However, digging deeper things got … Continue reading

Posted in Computers, Programming | Tagged , , , | 3 Comments

2011 links no. 1

3D Software Rendering Engine – Part I by darkoman. Fluent CSV/XML Exporter For List by Sacha Barber allows to export / save any C# container to CSV and XML. Push Framework – A C++ toolkit for high performance server development … Continue reading

Posted in OS, Programming, Web | Tagged , , , , , , , , , | Leave a comment

March 2011, links

HTML5 Web Storage in Essence from Wayne Ye. Sacha Barber again about: Task Parallel Library (3 of n). Video of: Upgrading through every version of Microsoft Windows.

Posted in Web | Tagged , , , | Leave a comment

Free C# / .NET Profiler with Silverlight support

World is still lacking a good free .NET / C# / VB.NET / F# Profiler. There are plenty of overpriced tools (some very useful, but expensive). I need simple profiler for one of my free / hobby projects, so I … Continue reading

Posted in Programming, Web | Tagged , , | Leave a comment

x64 C# warning – Referenced assembly ‘System.Data.dll’ targets a different processor

Using Visual Studio 2010 C# to compile .NET project for Target Platform x64, the following two warnings appears: —— Rebuild All started: Project: TestProject-64-bit, Configuration: Debug x64 —— warning CS1607: Assembly generation — Referenced assembly ‘System.Data.dll’ targets a different processor … Continue reading

Posted in Programming | Tagged , , , | 2 Comments

VMware vSphere Client errors on Windows 7

Trying to start VMware vSphere Client on Windows 7 to connect ESX / ESXi machine or vCenter, throws two error boxes: Could Not Connect — Error parsing the server “vcenter.lan” “clients.xml” file. Login will continue, contact your system administrator. and … Continue reading

Posted in OS | Tagged , , , | Leave a comment