-
这是一个VC调用VB控件的实例,通过这个实例可以让您了解如何在VC中去调用用VB开发的控件。相信对您一定有帮助的。...
这是一个VC调用VB控件的实例,通过这个实例可以让您了解如何在VC中去调用用VB开发的控件。相信对您一定有帮助的。
-This is an instance of VC call the VB controls, through this example allows you to learn how to use VB to call the VC in the development of controls. I believe you must have help.
- 2023-05-23 16:35:03下载
- 积分:1
-
BIOS工具
BIOS工具-BIOS tools
- 2023-06-26 15:25:04下载
- 积分:1
-
set application windows to mosttop
将打开的窗口一直置于其它窗口之上
包含源代码,vb6.0环境生成,.net环境下是否测试过忘了,不过内面有一个.net源码-set application windows to mosttop
- 2022-05-24 10:35:26下载
- 积分:1
-
嵌入式WinCE msgclient例子,使用EVC实现发展
嵌入式WINCE MSGCLIENT的例子,使用EVC开发实现-Embedded WINCE MSGCLIENT example, the use of EVC realize development
- 2022-03-21 17:54:43下载
- 积分:1
-
排课系统的开发实现
很不错的可以运行的delphi 7.0下的代码,可以简单调试,即可运行,希望该代码能够对编程爱好者有用!
使用说明
1、在SQL sever 2000的企业管理器附加data中的数据库
2、打开Exe中的paike文件,把sever的值改为自己的服务器名
3、用户鲍仁云的密码为 bao
- 2022-01-26 08:00:42下载
- 积分:1
-
GPIO控制LED的简单C程序,希望对大家有所帮助。谢谢大家支持!...
GPIO控制LED的简单C程序,希望对大家有所帮助。谢谢大家支持!-GPIO control LED simple C program, we hope to help. Thank you for support!
- 2023-09-03 10:00:03下载
- 积分:1
-
简易计算器
一个简简单单的计算器,使用VC++的MFC创造出来,代码规范,很有阅读性,可以用来进行一些简单的计算,比如加,减,乘,除,开根,平方,立方等等。而且界面美观又小巧,图标漂亮。你使用了,一定会给好评的。
- 2022-03-02 23:19:14下载
- 积分:1
-
一个关于时钟显示的C语言程序。是24小时制式显示。
一个关于时钟显示的C语言程序。是24小时制式显示。-A clock displayed on the C language program. 24-hour format is displayed.
- 2022-02-28 10:47:42下载
- 积分:1
-
QT编写的C++贪吃蛇小游戏
游戏通过按键控制
部分代码:
#include "gamewidget.h"
#define ROW 13
#define COL 16
#define UP 0
#define DOWN 1
#define LEFT 2
#define RIGHT 3
GameWidget::GameWidget(QWidget *parent)
:QWidget(parent)
{
this->setAutoFillBackground(true);//覆盖
this->resize(480,270);
this->setWindowIcon(QIcon("img/icon.jpg"));
this->setWindowTitle("贪吃蛇");
QPalette palette;
palette.setBrush(QPalette::Background,QBrush((QPixmap)"img/bjt.png"));
this->setPalette(palette);
//按扭区
leftbtn=new QPushButton(this);
leftbtn->setIcon((QIcon)"img/zuo.png");
leftbtn->setIconSize(QSize(40,40));
leftbtn->setGeometry(QRect(340,180,40,40));
leftbtn->setFlat(true);
rightbtn=new QPushButton(this);
rightbtn->setIcon((QIcon)"img/you.png");
rightbtn->setIconSize(QSize(40,40));
rightbtn->setGeometry(QRect(430,180,40,40));
rightbtn->setFlat(true
- 2022-03-21 19:09:00下载
- 积分:1
-
Capturing the Extra Mouse Button Events.
This program will demonstrate how to...
Capturing the Extra Mouse Button Events.
This program will demonstrate how to capture the extra mouse buttons such as the mouse wheel and x buttons (the buttons on the side of the mouse).
- 2022-03-22 16:38:30下载
- 积分:1