代码搜索:数据卡

找到约 10,000 项符合「数据卡」的源代码

代码结果 10,000
www.eeworm.com/read/361283/10059750

pas uconst.pas

unit uConst; interface const AppCaption='天涯进销存管理系统'; Errorinfo='错误信息'; Hintinfo='提示信息'; DataSaveOfSucceed='保存数据成功。'; DataSaveOfFail='保存数据错误。'; DataAuditingOfSucceed='审核提交
www.eeworm.com/read/361283/10059978

~pas uconst.~pas

unit uConst; interface const AppCaption='龙邦进销存管理系统'; Errorinfo='错误信息'; Hintinfo='提示信息'; DataSaveOfSucceed='保存数据成功。'; DataSaveOfFail='保存数据错误。'; DataAuditingOfSucceed='审核提交
www.eeworm.com/read/228995/10061145

h vi2c_c51.h

/********************************************************************************************************* ** ** (c) Copyright 2004-2006 **
www.eeworm.com/read/164952/10080682

txt 如何挽救软盘文件.txt

如何挽救已受物理损坏的软盘中的文件 方法一:   1.Windows法一   进入Win98安全模式。进入A盘,这时一般能顺利进入A盘。将A盘中文件全部选中,单击工具栏上的“复制”按钮,再在C盘中建立一个新文件夹如AA,选中后单击“粘贴”即可将A盘中的文件拷入文件夹AA,从而恢复A盘中的文件(已受物理损坏簇中的文件除外)。   2.Windows法二   进入Win98安全模式。 ...
www.eeworm.com/read/360593/10085588

c eeprom_main.c

/*********************************************** **** AVR 内部EEPROM读写范例 *** **** *** **** 作者: HJJourAVR *** **** 编译器
www.eeworm.com/read/164519/10105193

txt readme.txt

1.数据连接:ODBC>>系统DNS>>BBS 数据库文件bbs01.mdb 无用户名及密码; 2.class文件,位于JAVACLASS目录下,请将其下的TEST目录,放到CLASSPATH指定的目录下。 其中bbsreg.java包含数据库连接部分,必要时可重新编译。 3.本论坛管理员名及密码:anan 4,数据远名字是bbs
www.eeworm.com/read/359477/10143736

h t6963c.h

// T6963c.h // #ifndef _T6963C_H #define _T6963C_H #include "includes.h" typedef unsigned char uchar; typedef unsigned int uint; typedef unsigned char bool; uchar gCurRow;
www.eeworm.com/read/359240/10159755

m 例9-24 .m

t=0:-001:1 %产生原始信号 x=t+sin(10*2*pi*t).*cos(2*pi*t) %对原始信号进行DCT变换 y=dct(x) %取数据长度的1/10进行重建实验 n=fix(length(y)/10) %其余数据全部填充为0 y(n+1:length(y))=0 %使用剩下的1/10数据进行反DCT变换,重建原始信号 z=idct(y)
www.eeworm.com/read/359240/10159770

m 例9-25 .m

t=0:-001:2*pi x=sin(3*t) y=hilbert(x) %同时显示原始数据图像和变换后数据图像 plot(t,real(y),':',t,imag(y))
www.eeworm.com/read/163433/10161813

txt c++编程思想 -- 第2章 笔记(4).txt

作者:rick1126 email: rickzhang@sina.com 日期:2001-7-18 8:34:05 2.4 什么是非正常 【C库的局限】 . 名字空间问题, 因为使用同一个名字空间, 不同的库必须使用不同的全局变量, 函数名称. 这样对于开发很难协调. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~