5 月 132020
 

Source: Detect if Visual C++ Redistributable for Visual Studio 2012 is installed

It depends on what version you are using. These two 2012 keys have worked well for me with their corresponding versions to download for Update 4. Please be aware that some of these reg locations may be OS-dependent. I collected this info from a Windows 10 x64 box. I’m just going to go ahead and dump all of these redist versions and the reg keys I search for to detect installation.:

Continue reading »
5 月 032020
 

Source: How do I get the serial key for Visual Studio Express?

I have an improvement on the answer @DewiMorgan gave for VS 2008 express. I have since confirmed it also works on VS 2005 express.
It lets you run the software without it EVER requiring registration, and also makes it so you don’t have to manually delete the key every 30 days. It does this by preventing the key from ever being written.

Continue reading »
2 月 092020
 

Source: How to: Configure an App to Support .NET Framework 4 or later versions

所有裝載通用語言執行平台 (CLR) 的應用程式都必須啟動或「啟用」CLR,才能執行 Managed 程式碼。 通常,.NET Framework 應用程式會在本身建置所在的 CLR 版本上執行,但是您可以使用應用程式組態檔 (有時稱為 app.config 檔案) 變更桌面應用程式的這個行為。 

本文說明如何讓您的傳統型應用程式在另一個 .NET Framework 版本上執行,且提供如何鎖定 4 或更新版本作為目標。

Continue reading »
2 月 072020
 

Source: Where to find microsoft visual studio 2008 express edition product registration key

You can install the Visual Studio 2008 Express ALL-IN-ONE ISO from the link:

http://download.microsoft.com/download/8/B/5/8B5804AD-4990-40D0-A6AA-CE894CBBB3DC/VS2008ExpressENUX1397868.iso

And it doesn’t need to be registered.

Continue reading »
9 月 242014
 

原文(source): [C#] DateTime toString格式化處理 @ 克里斯小圭的碎碎念 :: 痞客邦 PIXNET ::

最近常常在做時間格式轉換,

可是每次寫一寫都老是忘記,將時間轉化成yyyy/MM/dd hh:mm:ss的格式

看起來似乎沒什麼錯,但hh這邊可是大有問題

主要原因是hh表示12小時制的時間,應該要用HH表示24小時制的時間,

閒暇之餘順便找了篇文章做相關的說明

Continue reading »