虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

F-FDG

  • php开发的行业搜索系统!!! 2. 安装 ------------ a. 解压程序rar文件

    php开发的行业搜索系统!!! 2. 安装 ------------ a. 解压程序rar文件,用二进制方式上传到你的网站的根目录或某一目录下 注意:一定要将ftp上传工具设置为二进制方式,再上传程序文件 b. unix或linux服务器下, 将以下文件属性改为:666 (或777) - function/base_info.php - function/emphasis_info.php - function/admin_pass_info.php - function/search_info.php - function/userfield_info.php - template/default/目录下的所有html文件 c. unix或linux服务器下, 将upfile/目录属性改为:777 d. 建立一个mysql数据库,并记下用户名和密码,以便安装时使用 e. 进入安装目录http://www.your_website.com/install/, 自动运行安装程序 f. 安装完成后,要求删除安装目录install/及其下文件 g. 后台管理目录http://www.your_website.com/adiministrator/ h. 可修改adiministrator/目录为你希望的独特的名字

    标签: a. php 搜索

    上传时间: 2014-11-29

    上传用户:小草123

  • LCD-7279的经过调试多次已经能够实现在指定的位置显示特定的数据。 程序lcd1.c实现基本的功能

    LCD-7279的经过调试多次已经能够实现在指定的位置显示特定的数据。 程序lcd1.c实现基本的功能,即:键盘输入0、1、2、3、4、5、6、7、8、9、a\b\c\d\e\f 在液晶的指定位置显示实现满屏或半屏显示点阵和字符,调入一幅图画的代码进行显示;

    标签: 7279 LCD lcd 调试

    上传时间: 2014-01-14

    上传用户:hgy9473

  • 最小二乘曲面拟合程序(m文件)

    最小二乘曲面拟合程序(m文件),对一组三维数据z=f(x,y)拟合,成为关于x和y的多项式

    标签: 程序

    上传时间: 2015-11-10

    上传用户:xsnjzljj

  • 五对角占优线性方程组求解的MATLAB 程序MYLU。 输入参数A为系数矩阵

    五对角占优线性方程组求解的MATLAB 程序MYLU。 输入参数A为系数矩阵,F为右端向量。输出参数L,U为A的LU 分解A=LU,X为解向量。

    标签: MATLAB MYLU 对角 参数

    上传时间: 2013-12-04

    上传用户:c12228

  • This document provides guidelines for integrating a discrete high speed USB host controller onto a f

    This document provides guidelines for integrating a discrete high speed USB host controller onto a fourlayer desktop motherboard. The material covered can be broken into three main categories: Board design guidelines, EMI/ESD guidelines and front panel USB guidelines. Section 1.1 Background provides an explanation of the routing experiments and testing performed to validate the feasibility of 480 Megabits per second on an actual motherboard. Section 7 contains a design checklist that lists each design recommendation described in this document. High speed USB operation is described in the USB 2.0 Specification (http://www.usb.org/developers/docs.html).

    标签: integrating controller guidelines document

    上传时间: 2013-11-27

    上传用户:电子世界

  • This document provides guidelines for integrating a discrete high speed USB host controller onto a f

    This document provides guidelines for integrating a discrete high speed USB host controller onto a fourlayer desktop motherboard. The material covered can be broken into three main categories: Board design guidelines, EMI/ESD guidelines and front panel USB guidelines. Section 1.1 Background provides an explanation of the routing experiments and testing performed to validate the feasibility of 480 Megabits per second on an actual motherboard. Section 7 contains a design checklist that lists each design recommendation described in this document. High speed USB operation is described in the USB 2.0 Specification (http://www.usb.org/developers/docs.html).

    标签: integrating controller guidelines document

    上传时间: 2015-11-18

    上传用户:xhz1993

  • gphone is a net phone base on the rtp protocol. It is simple but pratical and can be a good sample f

    gphone is a net phone base on the rtp protocol. It is simple but pratical and can be a good sample for newbies of rtp protocol

    标签: protocol pratical gphone simple

    上传时间: 2014-01-19

    上传用户:lnnn30

  • 蚂蚁算法

    蚂蚁算法,c语言版,其中,‘F’点表示食物,‘H’表示窝,白色块表示障碍物,‘+’就是蚂蚁了。

    标签: 蚂蚁算法

    上传时间: 2013-12-24

    上传用户:2404

  • 嘿嘿,大侠看到不要见笑呀... 大家都知道使用DLL的好处.于是我就想把FORM封装到DLL里面去. 到网上找,发现是MDI和模式窗体的,非模式的也有很多问题.便想自己解决这个问题. 原来是用

    嘿嘿,大侠看到不要见笑呀... 大家都知道使用DLL的好处.于是我就想把FORM封装到DLL里面去. 到网上找,发现是MDI和模式窗体的,非模式的也有很多问题.便想自己解决这个问题. 原来是用DLL创建一个对象返回,但发现有很多的问题. 想了半天就去寻根问柳吧. 找到了类. 我就想把类封装进DLL,到时简单的返回一个类,然后在主程序里操作不就简单了? 找了半天发现了TFormClass,于是试了试从DLL导出来,像一般的程序一样创建窗体发现成功. 接着我又想看看其他的类是不是也能这样,就拿TFrame来实验. function GetDllFrameClass():TFrame stdcall 第一次是这样声明的,失败.奇怪?! 试了好多次都不行,就想到了TFormClass(Ctrl+左键),进去看看,发现是这样声明的. TFormClass = class of TForm 哎呀,恍然大悟!! class(TFrame) 是声明一个类, 这个类继承了TFrame类 f: TFrame 是一个对象 class of TFrame 声明的是类类型, f:TFrameClass 是一个类. function GetDllFrameClass():TFrame 返回就不是类而是对象了,照TFormClass修改后TFrameClass = class of TFrame 运行...成功,

    标签: DLL FORM MDI 模式

    上传时间: 2013-12-10

    上传用户:kiklkook

  • 单片机系统上电后

    单片机系统上电后,P0 口和 P1 口都被清 0。然后,你规定一个由 6 个数字构成的序列(每个数字从 0~F 中选取),比如 E、8、9、0、7、F。然后每次当单片机检测到外部中断 0发起中断时间时,读取 P0 口和 P1 口上的状态值,当连续 6 次外部中断事件的对应的数字序列构成你所设定的序列后(举例来说,如果 P0.0 是 1,P0 和 P1 的其他管脚是 0,那么我们称为检测到一次数字 0),从串口打印输出一幅类似下图的 16×16 的ASCII码的圣诞树图片。

    标签: 单片机系统 上电

    上传时间: 2015-12-04

    上传用户:wqxstar