본문 바로가기

Application179

CLR Debugger CLR Debugger (DbgCLR.exe) The Microsoft CLR Debugger (DbgCLR.exe) provides debugging services with a graphical interface to help application developers find and fix bugs in programs that target the common language runtime. The CLR Debugger, and the accompanying documentation, is based on work being done for the Microsoft Visual Studio 2005 Debugger. As a result, the documentation refers mostly t.. 2009. 3. 31.
DateTime Library 원문 : http://www.codeproject.com/KB/cs/csdatetimelibrary.aspx using System; namespace Concepts2Code.Utilities { /// /// Common DateTime Methods. /// /// public enum Quarter { First = 1, Second = 2, Third = 3, Fourth = 4 } public enum Month { January = 1, February = 2, March = 3, April = 4, May = 5, June = 6, July = 7, August = 8, September = 9, October = 10, November = 11, December = 12 } public .. 2009. 3. 16.
Visual C++ ActiveX Control for hosting Office documents in Visual Basic or HTML Visual C++ ActiveX Control for hosting Office documents in Visual Basic or HTML View products that this article applies to. This article was previously published under Q311765 On This Page SUMMARY MORE INFORMATION Background information Considerations about the design Download the sample The DSO Framer ActiveX document control sample Run the sample Code a solution using the control Create new do.. 2008. 12. 17.
파일 버젼 구하기 function GetFileVersion(ExePath: String): String; var trans : Pointer; transtring : String; n, aLen, bLen : DWORD; Buf : PChar; Version : PChar; begin n := GetFileVersionInfoSize(PChar(ExePath), n); Buf := AllocMem(n); try GetFileVersionInfo(PChar(ExePath), 0, n, Buf); VerQueryValue(Buf, 'VarFileInfo\Translation', trans, aLen); transtring := IntToHex(MakeLong(HiWord(Longint(trans^)), LoWord(Long.. 2008. 12. 16.