-
A very Good thisngs for ACM
很好的ACM资料,这是我自己在HDU上做的题目-A very Good thisngs for ACM
- 2022-02-04 04:33:27下载
- 积分:1
-
快速固定
fast fixed-point ICA算法的Matlab实现-fast fixed-point algorithms ICA Matlab
- 2022-02-14 09:24:48下载
- 积分:1
-
JGeek 是一个 J2ME 手机策略游戏。
JGeek 是一个 J2ME 手机策略游戏。-JGeek is a J2ME mobile phone game strategy.
- 2022-02-22 02:32:24下载
- 积分:1
-
涡轮是一个客户端的魔术在线
Turbo Magic Online is a client-server internet multiplayer game in which people play games of Magic: the Gathering against each other. -Turbo Magic Online is a client-server INTE campus multiplayer game in which people play game s of Magic : the Gathering against each other.
- 2023-03-07 02:30:04下载
- 积分:1
-
一个小程序的画,不完善,请给精上传,谢谢大家
一个画图的小程序,不完善,请大家给与完善后上传,-A drawing of a small program, imperfect, please give refined upload, thank you
- 2022-04-24 14:07:35下载
- 积分:1
-
it is a digital clock
it is a digital clock
- 2022-11-12 18:15:02下载
- 积分:1
-
日历程序,用Basic编写的
日历程序,用Basic编写的-calendar program, prepared by the Basic
- 2022-01-26 01:12:36下载
- 积分:1
-
cadense orcad capture
cadense orcad capture
- 2022-09-17 21:45:03下载
- 积分:1
-
VC++ 删除目录、文件夹
VC++ 删除目录或文件夹的例子。删除指定的文件夹目录的源码,请在文本框中输入需要删除的目录名称、路径即可,路径不要错哦,本示例主要是演示如何删除文件,在易用性方面没过多完善。
//是文件时直接删除
if (!file.IsDots() && !file.IsDirectory())
DeleteFile(file.GetFilePath());
else if (file.IsDots())
continue;
else if (file.IsDirectory())
{
path = file.GetFilePath();
//是目录时,继续递归调用函数删除该目录下的文件
DelFolder(path);
//目录为空后删除目录
RemoveDirectory(path);
}
- 2022-01-22 03:11:03下载
- 积分:1
-
VB API实现简单的程序窗口
VB 基于API技术实现简单的程序窗口,源码文件说明:用VB的模块模仿写的几个小例子(不用窗体)[源码]
FirstWindow
利用Win32API和消息机制显示的窗口(VB6则把一切底层操作隐藏起来)
Menu_Project
使用Res文件中的菜单资源来显示菜单,这个VB版的程序没能显示出菜单,这是两者的差异,VB6应该不能通过加载资源文件中的菜单资源来在窗口中显示菜单。
MsgWindow
先打开Windows附件中自带的Notepad记事本程序,然后在程序中将要显示的内容通过SendMessage发送到记事本中,可以通过查看记事本中的内容来了解MsgWindow的运行情况。
在程序中将收到的消息查表翻译成文本以“WM_XXX”格式显示出来,并且将调用各个API函数的过程也显示出来,这样可以分析窗口的各种行为和消息之间的关系。
SendMessage 两个程序,一个Send,一个Receive,利用SendMessage函数实现两个程序窗口间的消息互发
代码中用到了StrUtils_Change1.bas模块,来自PSC,自已做了些许修改。主要是用到了wsprintf函数,对应于Win32API函数wprintf(Win32API函数wprintf在VB中不能去调用它,调用会出错。)
- 2023-08-17 05:30:03下载
- 积分:1