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

2<b>7</b>2

  • VB编写的销售合同管理系统

    VB编写的销售合同管理系统,完整的程序设计说明书 第1章 绪  论 1.1 项目背景 1.2实行销售合同管理的企业的业务特点 1.3 计算机管理销售合同的必要性 1.4 销售合同管理工作分析 第2章 可行性研究 2.1 管理可行性 2.2 技术可行性 第3章Visual Basic 6.0编程环境简介及数据库编程 3.1 VB编程环境简介 3.2 VB数据库编程 第4章 销售合同管理系统需求分析说明 4.1 引言 4.1.1 编写目的 4.1.2 参考资料 4.2 任务概述 4.2.1 开发目标 4.2.2 运行环境 4.2.3 条件与限制 4.3 功能需求 4.3.1 功能划分 4.3.2 功能描述 4.3.3 详细功能需求 4.4 性能需求 4.4.1 数据精确度 4.4.2 时间特性 4.4.3 适应性 4.5 运行需求

    标签: 编写 合同 管理系统 销售

    上传时间: 2014-01-16

    上传用户:123啊

  • 银行代收电话费管理系统1.0功能叙述 使用文件管理整个收费信息

    银行代收电话费管理系统1.0功能叙述 使用文件管理整个收费信息,内容有:客户姓名C16,电话号码N11,市话费F7.2,长途费F7.2,信息费F7.2,ADSL费F7.2,费用合计F8.2,对应年月N6,收费状态C(0――未收,1――已收),收费日期D,银行帐号N20,收费人编姓名.

    标签: 1.0 电话 文件管理 收费

    上传时间: 2015-11-11

    上传用户:wsf950131

  • HHARM2410: 1. 从ftp://ftp.arm.linux.org.uk上下载linux内核

    HHARM2410: 1. 从ftp://ftp.arm.linux.org.uk上下载linux内核,由于项目原因,先后跑了2.6.11,2.6.13和2.6.15,试了一下ftp.kernel.org上下载的2.6.16,没跑起来,打住。 2. 编辑linux-2.6.15/Makefile, ARCH ?= $(SUBARCH) CROSS_COMPILE?= 改为 ARCH ?= arm CROSS_COMPILE?= arm-unknown-linux-gnu- 我用的编译器是4.0.1版本的,一般的3.x的应该都没问题

    标签: linux ftp HHARM 2410

    上传时间: 2014-09-03

    上传用户:lo25643

  • 本文主要讲了C语言编写魔王语言解释系统

    本文主要讲了C语言编写魔王语言解释系统,把魔王抽象的语言通过进队出队按照规则α 转换为 β1β2…βm 和θδ1δ2…δn 转换为 θδnθδn-1… θδ1θ 进行解释,最后解释译成我们能够看懂得语言。同时也讲述了在编写调试程序中一些需注意的问题,如调试程序的步骤。通过队的应用(出队入队)以及其他相关知识完成了这次课程设计。

    标签: C语言 编写 语言

    上传时间: 2015-11-26

    上传用户:weiwolkt

  • 汇编常用的小程序

    汇编常用的小程序,包括2转10,2转ASCII等等,里面注释比较详细,请大家自己看,欢迎提出意见。

    标签: 汇编 程序

    上传时间: 2016-01-02

    上传用户:caiiicc

  • We have a group of N items (represented by integers from 1 to N), and we know that there is some tot

    We have a group of N items (represented by integers from 1 to N), and we know that there is some total order defined for these items. You may assume that no two elements will be equal (for all a, b: a<b or b<a). However, it is expensive to compare two items. Your task is to make a number of comparisons, and then output the sorted order. The cost of determining if a < b is given by the bth integer of element a of costs (space delimited), which is the same as the ath integer of element b. Naturally, you will be judged on the total cost of the comparisons you make before outputting the sorted order. If your order is incorrect, you will receive a 0. Otherwise, your score will be opt/cost, where opt is the best cost anyone has achieved and cost is the total cost of the comparisons you make (so your score for a test case will be between 0 and 1). Your score for the problem will simply be the sum of your scores for the individual test cases.

    标签: represented integers group items

    上传时间: 2016-01-17

    上传用户:jeffery

  • 操作系统原理教程电子教案ppt

    操作系统原理教程电子教案ppt,第1章 操作系统概述2.ppt,第2章 处理器管理.ppt,第3章 存储器管理.ppt,第4章 文件管理.ppt,第5章 设备管理.ppt,第6章 作业管理与系统接口.ppt

    标签: 操作系统原理 教程 电子教案

    上传时间: 2016-01-24

    上传用户:thuyenvinh

  • 三星照相模块驱动。linux/char下

    三星照相模块驱动。linux/char下,linux 2.6与linux 2.4下都使用

    标签: linux char 三星 模块

    上传时间: 2016-02-04

    上传用户:youmo81

  • The XML Toolbox converts MATLAB data types (such as double, char, struct, complex, sparse, logical)

    The XML Toolbox converts MATLAB data types (such as double, char, struct, complex, sparse, logical) of any level of nesting to XML format and vice versa. For example, >> project.name = MyProject >> project.id = 1234 >> project.param.a = 3.1415 >> project.param.b = 42 becomes with str=xml_format(project, off ) "<project> <name>MyProject</name> <id>1234</id> <param> <a>3.1415</a> <b>42</b> </param> </project>" On the other hand, if an XML string XStr is given, this can be converted easily to a MATLAB data type or structure V with the command V=xml_parse(XStr).

    标签: converts Toolbox complex logical

    上传时间: 2016-02-12

    上传用户:a673761058

  • 扫雷程序还会自动展开已确定没有雷的雷区。如果a[3][4]周围雷数为1

    扫雷程序还会自动展开已确定没有雷的雷区。如果a[3][4]周围雷数为1,a[2][3]已被标示为地雷,那么a[2][4],a[2][5],a[3][3],a[3][5],a[4][3],a[4][4],a[4][5]将被展开,一直波及到不可确定的雷区。这也是实现的关键。我们可以把数组的元素设定为一个类对象,它们所属的类设定这样的一个事件:在被展开时,检查周围的雷数是否与周围标示出来的雷数相等,如果相等则展开周围未标示的雷区。这样新的雷区展开又触发这个事件,就这样递归下去,一直蔓延到不可展开的雷区。相信在了解以上两个要点后,把雷区这个类编写完全(如添加是否有雷标记,是否展开标记,周围雷数等,双击,左右单击的鼠标事件等),实现扫雷程序应是十分简单的一件事。

    标签: 程序 自动

    上传时间: 2016-02-13

    上传用户:GHF