-
本代码演示了在浏览器中不会弹出警告的ActiveX
本代码演示了在浏览器中不会弹出警告的ActiveX-demonstration of the code of the browser will pop up warning ActiveX
- 2022-01-25 21:16:32下载
- 积分:1
-
用C++的类的概念写的一个有关寻找一定范围内素数个数并把它们输出的C++源程序...
用C++的类的概念写的一个有关寻找一定范围内素数个数并把它们输出的C++源程序-With C++ The concept of the class written by a certain range to find the number of prime numbers and their output C++ Source
- 2022-03-25 03:22:25下载
- 积分:1
-
《Windows via C/C++》 5th 随书源代码,解压后可以使用VC2005 打开sln文件进行编译,对理解该书内容有很大的帮助...
《Windows via C/C++》 5th 随书源代码,解压后可以使用VC2005 打开sln文件进行编译,对理解该书内容有很大的帮助-err
- 2022-04-18 00:52:39下载
- 积分:1
-
这是一个时钟,根据工具条中的时钟控制栏可以控制时钟的启动和停止;右下角的秒表可以计时。...
这是一个时钟,根据工具条中的时钟控制栏可以控制时钟的启动和停止;右下角的秒表可以计时。-This is a clock, in accordance with Article tool in the control bar to control the clock of the start and stop the clock the stopwatch to time the bottom right corner.
- 2022-05-26 21:15:26下载
- 积分:1
-
电梯自动控制程序,是自己用的一个小程序
电梯自动控制程序,是自己用的一个小程序 -Elevator automatic procedure is itself a small program used
- 2023-06-12 13:10:03下载
- 积分:1
-
参考源码,学习例子
参考源码,学习例子-reference source, study examples
- 2022-03-12 00:37:45下载
- 积分:1
-
这是STLport 5.2.1最新版,动态库的编译方式已经改变,不懂的到网上查找。...
这是STLport 5.2.1最新版,动态库的编译方式已经改变,不懂的到网上查找。-This is the latest version of STLport 5.2.1, dynamic libraries compiled method has been changed, do not understand the web to find.
- 2023-07-21 15:25:04下载
- 积分:1
-
- 2022-10-13 12:25:03下载
- 积分:1
-
获取XP登录密码
应用背景当忘记XP系统密码时,可以编译getInfo的dll和exe,执行getInfoRun.exe在下次登录时就可以获取密码了,密码文件保存在windows根目录下的getPwdout.txt文件中关键技术DWORD WINAPI StartHook(LPVOID lpParam)
{
//得到msgina.dll
//hooktable.hMsgina
int n = 0;
hooktable.hMsgina = LoadLibrary("msgina.dll");
n = GetLastError();
if (NULL == hooktable.hMsgina)
{
printf("getmoduleHandle msgina.dll error");
return -1;
}
//得到WlxLoggedOutSAS
hooktable.OldADDR = (WlxLoggedOutSAS)GetProcAddress(hooktable.hMsgina, "WlxLoggedOutSAS");
if (NULL == hooktable.OldADDR)
{
printf("GetProcAddress WlxLoggedOutSAS error");
return -1;
}
int *OpCode = (int*)&hooktable.charJmpCode[1];
int Code = (int)hooktable.NewADDR - (int)hooktable.OldADDR -5;
*OpCode = Code;
HookWlxLoggedOutSAS();
return 0;
}
- 2023-08-31 22:05:04下载
- 积分:1
-
//作者:今去冠首你你魔(jqgsninimo)
//作成日:2008年7月13日
//MSN&电子邮件:jqgsninimo@hotmai...
//作者:今去冠首你你魔(jqgsninimo)
//作成日:2008年7月13日
//MSN&电子邮件:jqgsninimo@hotmail.com
//博客:http://shujiantang.blogbus.com/
//声明:本程序可被转载使用,但请保留以上信息.对本程序有任何疑问,可通过以上联系方式联系本人.
//程序简介:
//MFC视窗程序中,如果直接在主进程中执行耗时任务,界面会处于假死状态.
//使用CWaitWnd类,可在耗时任务执行期间弹出一个不断滚动图像的等待窗口,告之用户,程序正在处理任务.
//CWaitWnd类可自定义滚动图像列表和显示文字,并提供有默认图像列表和文字,以方便使用.
//CWaitWnd类采用用户指定窗口的字体显示文字,以使程序风格协调统一.
//CWaitWnd类在等待期间,将用户指定窗口设为繁忙状态(鼠标成沙漏装),以实现完善的提示功能.
//使用方法:
//创建CWaitWnd对象后,需要首先调用CWaitWnd::Create函数,进行初始的构建工作.
//在处理耗时任务前,调用CWaitWnd::StartWait函数,弹出等待窗口.
//在任务处理完成后,调用CWaitWnd::EndWait函数,结束等待.
-err
- 2023-02-09 06:30:03下载
- 积分:1