-
一个关于bp算法的大全,有matlab、c、c++的源代码都有,还有bp神经网络源程序,感兴趣的就看看吧...
一个关于bp算法的大全,有matlab、c、c++的源代码都有,还有bp神经网络源程序,感兴趣的就看看吧-an algorithm on the Encyclopaedia bp, Matlab, c, c have the source code, there bp neural network source, interested to see it on
- 2022-03-06 04:27:36下载
- 积分:1
-
透明控件
TransparentCtl.vcproj
这是使用应用程序向导生成的 VC++ 项目的主项目文件。
它包含生成该文件的 Visual C++ 的版本信息,以及有关使用应用程序向导选择的平台、配置和项目功能的信息。
TransparentCtl.h
这是应用程序的主要头文件。它包括其他项目特定的头文件(包括 Resource.h),并声明 CTransparentCtlApp 应用程序类。
TransparentCtl.cpp
这是包含应用程序类 CTransparentCtlApp 的主要应用程序源文件。
TransparentCtl.rc
这是程序使用的所有 Microsoft Windows 资源的列表。它包括 RES 子目录中存储的图标、位图和光标。此文件可以直接在 Microsoft Visual C++ 中进行编辑。项目资源位于 2052 中。
- 2022-01-27 13:34:46下载
- 积分:1
-
运用vc开发的界面象棋游戏,主要运用基本的vc 函数编写.可帮助vc朋友运用算法及函数调用,进一步理解vc的机理....
运用vc开发的界面象棋游戏,主要运用基本的vc 函数编写.可帮助vc朋友运用算法及函数调用,进一步理解vc的机理.-use vc development of the interface chess games, primarily using basic function vc prepared. Friends can help vc used algorithm and function call, vc further understand the mechanism.
- 2022-07-22 07:28:25下载
- 积分:1
-
本程序演示了Slider的使用方法,并于edit box联合使用,显示Slider的值...
本程序演示了Slider的使用方法,并于edit box联合使用,显示Slider的值-this program demonstrated the use of Slider, in the edit box and joint use, show the value of Slider
- 2022-04-29 06:39:14下载
- 积分:1
-
giveio giveio giveio
giveio giveio-giveio giveio giveio
- 2022-06-13 10:51:00下载
- 积分:1
-
用vb编写的仿瑞星界面的源码,和大家共同学习。多谢大家的支持。...
用vb编写的仿瑞星界面的源码,和大家共同学习。多谢大家的支持。-Prepared using vb Ruixing imitation of the source interface, and we all learn together. I would like to thank everyone" s support.
- 2023-08-07 14:40:03下载
- 积分:1
-
通讯录管理系统,能够实现人员的信息录入、查询、修改、删除、保存、显示等操作。要求利用菜单的形式进行管理。...
通讯录管理系统,能够实现人员的信息录入、查询、修改、删除、保存、显示等操作。要求利用菜单的形式进行管理。-Address book management system, enables personnel information input, query, modify, delete, save, display and other operations. Require the use of the menu in the form of management.
- 2023-02-24 09:10:04下载
- 积分:1
-
Previously collected dynamic drawing code to improve the show into a floating wi...
以前收集的动态画图的代码,可改进成浮动显示窗口-Previously collected dynamic drawing code to improve the show into a floating window
- 2022-01-25 15:11:48下载
- 积分:1
-
c# 多语言版本
c# 实现的asp和winform多语言版本的demo,原理使用资源文件或xml配置文件。
源码片段:[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager
{
get
{
if (object.ReferenceEquals(resourceMan, null))
{
&nbs
- 2022-03-14 03:15:12下载
- 积分:1
-
qt alarm实现闹钟
#include"alarm.h"
#include
Alarm::Alarm(QWidget * parent)
:QDialog(parent)
{
init();
layout();
con();
};
// ******
// 初始化
// ******
void Alarm::init()
{
setWindowTitle("Alarm clock"); //设置标题
setFixedSize(QSize(300,80)); //固定大小
timer=new QTimer; //控制lcd的时间刷新
uptimer=new QTimer; //控制对话框上升
dtimer=new QTimer; //控制对话框下降
itimer=new QTimer;
lcdNumber=new QLCDNumber; //显示当前时间
lcdNumber->setFixedSize(QSize(150,50)); //固定大小
lcdNumber->setNumDigits(8); //显示八个数字,默认是显示5个数字
lcdNumber->setSegmentStyle(QLCDNumber::Flat); //填充颜色,默认是白色的
lcdNumber->display(QTime::currentTime().toString("hh:mm:ss")); //设置格式,还有其他形式的
label=new QLabel(QString::fromLocal8Bit("闹钟")); //提示设置下个闹钟
- 2022-01-28 04:54:06下载
- 积分:1