-
vumat01
jc模型中的vumat子程序,abaqus中开发(VUMAT subroutine in JC model, developed in ABAQUS)
- 2018-10-31 11:30:48下载
- 积分:1
-
canvas
两个小船在移动的代码,主要是计时器的使用,利用回调函数显示动画(The two boats in the mobile code, the use of the timer, the use of a callback function to display the animation)
- 2012-04-21 11:19:33下载
- 积分:1
-
modDownload
vb 利用URLDownloadToFile下载文件(vb download files using the URLDownloadToFile)
- 2013-07-22 14:50:05下载
- 积分:1
-
icePubDll
获取计算机硬件信息的动态链接库,CPU序列号,硬盘序列号,MAC地址等信息
例程:
void gethardinfo()
{
QString str1="";
char buff[1024];
char buff2[1024];
char temp;
typedef int (WINAPI ICEPUB_MACHINEGETINFO)(int typeFlag,char *strInfo);
ICEPUB_MACHINEGETINFO *icePub_machineGetInfo = 0;
HINSTANCE hDLLDrv = LoadLibrary("icePubDll.dll");
if(hDLLDrv)
{
icePub_machineGetInfo = (ICEPUB_MACHINEGETINFO *)GetProcAddress(hDLLDrv, "icePub_machineGetInfo");
}
icePub_machineGetInfo(3,buff);
str1=buff;
int i=0;
int n=0;
n=str1.length();
qDebug()<<n;
for(i=0;i<n;i+=2)
{
temp=buff[i];
buff2[i+1]=temp;
buff2[i]=buff[i+1];
}
QString str2=buff2;
qDebug()<<buff2;
qDebug()<<str2;
}(Access to the computer hardware information dynamic link library, CPU serial number, hard disk serial number, MAC address and other information)
- 2017-12-28 11:45:08下载
- 积分:1
-
矩形板位移
矩形板有限元matlab程序 节点位移 节点应力应变(Rectangular plate finite element matlab program)
- 2021-01-25 20:38:42下载
- 积分:1
-
msdown
说明: 收集microsoft下载中心的可用项目,整合到csv里。个人使用。(Collect items in Microsoft download center and export to csv, only for self use.)
- 2019-11-13 00:27:49下载
- 积分:1
-
在unix环境下编写网络编程一个很好的开发包
在unix环境下编写网络编程一个很好的开发包 -unix environment in the preparation of network programming a very good development kits
- 2022-04-16 17:44:03下载
- 积分:1
-
js+css3实现立体式图片旋转特效
说明: 可以实现图片立体式展示,并且支持鼠标滑动滚动操作(It can realize stereoscopic display of pictures and support mouse sliding and scrolling operation.)
- 2020-06-25 06:20:01下载
- 积分:1
-
火车订票系统
应用背景用C语言写的火车订票系统,对于C语言学习者学习链表有极大的帮助,内含测试文件供测试。。。。。。。。。。。。关键技术/*定义存储火车信息的结构体*/
struct train
{
char num[10];/*列车号*/
char city[10];/*目的城市*/
char takeoffTime[10];/*发车时间*/
char receiveTime[10];/*到达时间*/
int price;/*票价*/
int bookNum ;/*票数*/
};
/*订票人的信息*/
struct man
{
char num[10];/*ID*/
char name[10];/*姓名*/
int bookNum ;/*需求的票数*/
};
/*定义火车信息链表的结点结构*/
typedef struct node
{
struct train data ;
struct node * next ;
}Node,*Link ;
/*定义订票人链表的结点结构*/
typedef struct people
{
struct man data ;
struct people*next ;
}bookMan,*bookManLink ;
- 2022-02-01 04:42:30下载
- 积分:1
-
多线程管理器
说明: 实现管理文件的相关功能,包括添加,删除,修改等。(Realize the relevant functions of management files, including adding, deleting, modifying and so on.)
- 2019-04-24 22:15:05下载
- 积分:1