-
Several on the fuzzy comprehensive evaluation of the article, those who are inte...
几个关于模糊综合评价的文章,有兴趣的人可以看看,应用很广泛。-Several on the fuzzy comprehensive evaluation of the article, those who are interested can see, the application is very wide.
- 2022-10-26 03:40:03下载
- 积分:1
-
框和单选
复选框和单选按钮的插件。它使用纯CSS编写,没有任何(Plug-ins for check boxes and radio buttons. It is written in pure CSS, without any.)
- 2019-03-06 11:46:42下载
- 积分:1
-
bldcm
说明: 270V直流无刷电动机调速系统设计,性能可自行调试,也可直接使用调试好的参数。(270V brushless DC motor speed control system design, the performance can be adjusted by itself, or directly use the parameters adjusted.)
- 2020-09-06 14:59:25下载
- 积分:1
-
ActiveMQ.part02
说明: ActiveMQ服务,简单直接启动即可,方便测试,第二部分(ActiveMQ service, simple and direct start, easy to test, Part II)
- 2020-06-17 10:00:02下载
- 积分:1
-
淡入淡出渐变的TAB圆角选项卡
淡入淡出渐变的TAB圆角选项卡,看上去十分专业的网页选项卡,当鼠标点击TAB的时候,对应的内容是慢慢显示,动画渐变显示,视觉上给人不错的缓冲效果,更平和。而且这个TAB的样式很小巧漂亮哦。
- 2022-04-01 22:40:09下载
- 积分:1
-
BtnDownUp
button按下后,edit控件内容连续变化,button抬起后edit内容停止变化。自己做的例子,只以int数据为例。(button is pressed, edit control content changes continuously, button lift stops changing after edit content. Own example, an int data as an example only.)
- 2013-08-24 11:42:31下载
- 积分:1
-
基于LS-DYNA的Lagrange网格与SPH鸟撞分析对比研究
说明: 别采用La酽蚰ge网格和SPH(SmoothedPalticleHyd功dyn啪ics,光滑粒子流体动力学法)模拟鸟体
进行风挡抗鸟撞性能对比分析,表明SPH分析得出的结果与传统的h鲫ge网格方法得出的结果以及试验实测
结果基本一致,为分析动力学大变形问题提供了更多的途径。(The results are basically consistent, which provides more ways for the analysis of dynamic large deformation problems.)
- 2020-07-01 15:40:02下载
- 积分:1
-
洗衣机控制电路
电子设计原理图,成就你的梦想,快来吧,小白变大佬(Electronic Design Principles, Achieve Your Dreams, Come on)
- 2020-06-20 02:00:02下载
- 积分:1
-
tableBEV
说明: 搭建的电动汽车充放电控制平台,能够有效用于电力系统方面的控制研究(The electric vehicle charge and discharge control platform can be effectively used in the control research of power system)
- 2019-12-25 21:31:56下载
- 积分:1
-
VC++6.0 在程序内注册ActiveX控件的例子源码
VC++6.0 在程序内注册ActiveX控件的例子源码,在程序中动态注册控件到Windows系统中,注册后所依赖该控件的程序才可正常运行。核心代码如下:
//加载ActiveX控件
HINSTANCE hLib = LoadLibrary(lpszDllName);
if (hLib == NULL)
{
TRACE(_T("%s加载失败
"), lpszDllName);
return FALSE;
}
//获得注册函数DllRegisterServer地址
FARPROC lpDllEntryPoint;
lpDllEntryPoint = GetProcAddress(hLib, _T("DllRegisterServer"));
//调用注册函数DllRegisterServer
if (lpDllEntryPoint != NULL)
{
if (FAILED((*lpDllEntryPoint)()))
{
TRACE(_T("调用DllRegisterServer失败
"));
FreeLibrary(hLib);
return FALSE;
}
else
{
FreeLibrary(hLib);
return TRUE;
}
}
else
{
TRACE(_T("调用DllRegisterServer失败
"));
FreeLibrary(hLib);
return FALSE;
}
更多代码请下载本源码包。
- 2022-08-18 20:45:44下载
- 积分:1