// Find Password from winlogon in win2000 / winnt4 + FindPass.cpp // 1. http://www.smidgeonsoft.com/ // 2. shotgun add comment, bingle change a little to find other user in winlogon // This code is licensed under the te rms of the GPL (gnu public l
//////////////////////////////////////////////////////////////////////////////// // Copyright (C) 2000-2001 Softelf Inc. All rights reserved. //////////////////////////////////////////////////////////////////////////////// // // Author : Telan // Da
Option Explicit Const KeyName = "Software\Microsoft\Windows NT\CurrentVersion\Windows" Private Sub Command1_Click() Dim Ver As OSVERSIONINFO, S As String, hKey As Long Dim Device As String, length As Long Ver.dwOSVersionInfoSize = Len(Ver) GetVersio
学习win32 api 得多练哦! 目录: Windows API 一日一练(1)第一个应用程序--------------------------3 Windows API 一日一练(2)使用应用程序句柄-----------------------4 Windows API 一日一练(3)使用命令行参数--------------------------6 Windows API 一日一练(4)MessageBox函数----------------------9 Windows API
非常好用的生日祝福系统 #include "stdafx.h" // Standard windows header file #include "BCMenu.h" // BCMenu class declaration #include //SK: makes A2W and other spiffy AFX macros work #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] =
非常好用的圣诞祝福系统 #include "stdafx.h" // Standard windows header file #include "BCMenu.h" // BCMenu class declaration #include //SK: makes A2W and other spiffy AFX macros work #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] =
void CppSQLite3DB::open(LPCTSTR szFile) { int nRet; #if defined(_UNICODE) || defined(UNICODE) nRet = sqlite3_open16(szFile, &mpDB); // not tested under window 98 #else // For Ansi Version //*************- Added by Begemot szFile must be in unicode-