




已阅读5页,还剩41页未读, 继续免费阅读
版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
毕毕业业设设计计(论论文文) 合合同同管管理理系系统统的的设设计计与与实实现现 摘摘 要要 在 21 世纪,随着计算机科学的发展,数据库技术在人们日常工作中的应用 越来越广泛,为广大用户提供了更加周到和人性化的服务。数据库技术已逐渐 成为当今计算机应用的潮流。本文主要是通过制作一款数据库软件即“合同 管理系统”来介绍数据库技术在人们日常生活和工作中的应用。 本论文所做的主要工作如下: (1)介绍了 visualbasic6.0 软件开发工具和利用 delphi7.0 和 ado 技术操 作数据库的一般原理。 (2)阐述整个“合同管理系统”的系统结构及工作原理;分析了系统实现中 的特殊性、难点。 (3)设计实现对数据库的操作功能、数据库查询功能、数据库打印功能。 (4)分析并解决实现中的若干技术问题。 (5)建立完整的“合同管理系统” ,进行测试并分析结果。 关键字关键字 数据库技术 ado 合同管理系统 abstract at the 21th century ,with the development of computer science, database technology is widely used in the peoples life and work. this makes users can enjoy more convenient and individual services. database technology is the trend of todays computer applications. in this work, we study the technique to build a software named contract stat system in order to introduce the applications of database technology in the peoples life and work. the main work of this paper are : (1) introduces the visual basic6.0 software development tool and introduces the method how to use the software and ado technology to operate the database. (2) investigates the system structure and working principle of the contract stat system. analyses the particularity and difficulty of the system. (3) analyses and resolves the technical problems in implementation. (4) establishes a test software and analyses the result after testing on it. key words database technology ado contract stat system 目录 第 1 章 绪论 5 第 2 章 概述 6 2.1 编程软件介绍及数据库概述.6 2.2 访问数据库的方法.8 第 3 章 系统分析与设计 12 3.1 需求分析12 3.2.模块设计13 第 4 章 合同管理系统的实现 14 4.1 软件流程图.14 4.2 分析与创建数据库15 4.3 系统各模块的设计与实现.18 4.3.1 用户登录管理模块的设计.18 4.3.2 合同基本信息录入模块设计.21 4.3.3 用户密码修改模块.26 4.3.4 合同统计模块的设计.29 4.3.5 收款模块的设计.36 4.3.6 合同信息查找模块的设计.40 第五章 系统性能测试 43 总结 44 致 谢 45 参考文献 46 第第 1 1 章章 绪论绪论 本论文描述了一个使用 vb 技术来实现创建一个基于本地数据库技术的合同 管理系统的实例该系统主要面向合同信息处理的单机服务,整个系统共有几 个部分来实现不同的功能: 用户登录管理。只有有权限的用户才能进入本系统,没有权限的用户 或非法用户不能进入本系统,从而有效地保证系统的安全。 合同基本信息录入。能够对合同的基本信息进入录入,包括合同的编 号、合同的类别、合同名称、合同部门、所属部门、合同开始日期、 合同结束日期、合同额等。 合同信息的查找。能够对合同的具体信息进行查找。可以提供按时间 范围查找、按所属部门查找、按合同编号查找、按客户名称查找、按 合同类别查找、按模糊条件查找。 对用户密码进行修改。为了保证软件的安全,用户需要定期修改密码。 用户在登录后要能对自己的密码进行修改。 合同统计。通过它首先可以浏览所有合同的具体信息,还能添加、删 除、修改、保存合同信息。同时,作为操作本软件的主要平台,通过 它能够访问其它的单元。 收款。可以对合同的收款的情况信息进行管理,包括对收款信息的录 入、删除、修改、保存等。 整个系统简单划分为以上 6 个部分 第第 2 2 章章 概述概述 2.1 编程软件介绍及数据库概述 visual basic 是由微软公司推出的一套完整的 windows 系统软件开发工 具,可用于开发 windows 环境下的各类应用程序,是一种可视化、真正面向对 象、采用事件驱动方式的结构化高级程序设计语言和工具的完美集成。它编程 简单、方便、功能强大,具有与其它语言及环境的良好接口,不需要编程开发 人员具备 c/c+或者 turbo pascal 语言知识和特别高深的专业知识,只要懂得 windows 的界面及其基本操作,就可以迅速上手,而 vb 在程序界面设计、多媒 体开发方面更是独具优势。 自 1991 年 visual basic 1.0 推出以来,visual basic 版本不断得到更 新,功能不断得到增强,现在的最新版本是 visual basic 6.0。为了满足不同 的开发需要,visual basic 6.0 本身又分为学习版、专业版。visual basic 6.0 对已有功能进行完善,同时增加了许多新的功能。 新的数据访问特性 在数据访问技术方面 visual basic 6.0 比起 visual basic 5.0 有了极大 的增强: 新的数据访问接口 ado:visual basic 6.0 支持的数据访问接口有 ado(activex 数据对象)、rdo(远程数据对象)和 dao(数据访问对象),每个接口 都代表了数据访问技术的不同发展阶段,最新的接口是 ado。ado 是比 rdo 和 dao 更加简单、更加灵活的对象模型,它是为 ole db 而设计的。old db 是新 的低层 com 接口,可以为任何数据源提供高性能的访问。这些数据源包括关系 和非关系数据库、电子邮件和文件系统、文本和图形、自定义业务对象等。ado 封装并实现了 olddb 的所有功能,它将全面取代 dao 和 rdo,成为数据访问接 口的主流。 新的数据源:除了已有的 data 和 remote data 控件外,visual basic 6.0 引入了几种新的数据源,包括数据识别的类模块和用户控件、数据环境、ado 记录集和 ado data 控件等。ado data 控件的功能与 data 和 remote data 控 件十分相似,都允许编程人员用最少的代码来创建数据库应用程序。 新的数据库绑定控件:visual basic 6.0 新增加了为数不少的数据绑定控 件,包括 datagrid, datalist, datacombo, hierarchical flexgrid 和 datarepeater 等。 集成的可视化数据库工具:包括查询设计器和数据库设计器,提供了可视 地查看并操作表、视图、存储过程和数据库结构的功能。 数据环境设计器:允许编程人员可视化地创建和操作 ado 对象,为编程人 员操纵数据源提供了极大的方便。 数据报表设计器:允许编程人员利用拖放技术来快速地从任何记录集创建 报表。 新的 internet 特性 visual basic 6.0 提供了多种不同的途径,来帮助编程人员开发出动态的、 功能强大的 internet 应用程序: iis 应用程序:可以直接 visual basic 6.0 来创建 iis 应用程序(服务器 端 internet 应用程序),响应浏览器用户的请求。 对下载 activex 文档的支持:在 internet explorer 中下载 activex 文档 与下载 activex 控件的方法相同。 除了新的数据访问特性和新的 internet 特性外,visual basic 6.0 在其 余方面也都做了重大改进,包括新的或增强的控件,新的或增强的语言特性, 以及新的或增强的向导。所有这些都使得 visual basic 6.0 功能更为强大。总 之,无论是开发小型应用系统,还是大型企业应用系统,甚至开发功能强大的 internet 应用程序,visual basic 6.0 都能胜任。 22 访问数据库的方法 visuai basic 6.0 的数据访问功能比起 visual basic 5.o 有了极大的增强。除 了支持 dao(数据访问对象)和 rdo(远程数据对象)外,visual basic 6.0 还提供了 新的 ado 和 rdo 更加简单、更加灵活的数据访问接口。此外,visual basic 6.0 还提供了新的数据源、新的数据绑定控件、新的可视化数据库工具、新的数据 环境设计器以及新的数据报表设计器。 1.数据访问对象(dao)控件 数据访问对象(dao)是 jet 引擎的面向对象的编程接口。jet 引擎使最终用 户与正在访问的特定数据库无关。jet 引擎驻留在(动态连接库)文件中,运行时将 应用程序的请求翻译成对数据库的物理操作。jet 引擎真正读取、写入和修改数 据库,并处理所有的内部的事务。jet 引擎介于用户界面和数据仓库之间。 通过数据访问对象和 jet 引擎可以识别以下三类数据库:visual basic 数据库;外 部数据库;odbc 数据库。 虽然可以直接使用数据访问对象来编程,但 data 控件作为一个图形控件,具 有易于使用的界面,它的最大优点就是只需少量代码或根本不用代码就可以创建 应用程序来显示。 2.运程数据对象和 remtoe data 控件 远程数据访问对象是位于 odbc api 和驱动程序管理器之上的对象模型, 它提供了一系列的对象来满足远程数据访问的特殊要求。尽管 rdo 在访问 jet 或 isam 数据库时受到限制,而且只能通过现存的 odbc 驱动程序来访问关系数 据库。但 rdo 能访问任何的 odbc 数据源,特别适用于智能的数据库服务器 (如 sol server 和 oracle 等)。 remote data 与 data 控件基本类似,都提供了对数据库的无缝访问,用户不 必编写任何代码就可以创建数据识别的应用程序,区别在于:remite data 控件是 通过使用 rdo 来实现数据访问,而 data 控件则通过使用 dao 来连接到 jet 引擎。 3.activex 数据对象和 ado data 控件 ole db 是一种统一的数据访问接口,它能够访问各种 dbms 和非 dbms 数据源。dbms 数据源包括主机数据库(如 ims 和 db2、服务器数据库(如 oracle 和 sql sereer)以及桌面数据库(如(micromft access);非 dbms 数据源包 括存放在 windows 和 unix 文件系统中的信息、电子邮件、电子表格、web 上 的文件或图形以及目录服务等。ole db 使得数据消费者(应用程序)可以使用相 同的方法访问各种数据,而不用考虑数据的具体存储地点、格式及类型。 ado(activex 数据对象)是 dao、rdo 的后继产物,更简单和灵活。它扩展了 dao 和 rdo 所使用的对象模型,包含较少的对象,更多的属性、方法和事件。 ado 是为 ole db 而设计的,它封装并实现了 ole db 的所有功能。 ado data 控件,也就是 adodc,是 visual basic 6.0 新引进的数据访问控 件,它使用 ado 来快速建立数据绑定控件和数据提供者之间的连接,它使编程 者使用最少的代码来创建数据库应用程序。当然,用 ado data 控件进行访问 数据时必须为待访问的数据库创建 ole db 数据连接。本毕业设计就是采用这 种先进的数据库访问技术访问数据库的。 4.数据环境设计器和数据报表设计器 数据环境设计器用于在设计时创建 ado 对象,它为数据库访问提供了一 个交互式环境。 在编程时,可以使用数据环境设计器创建连接、命令和其他 ado 对象, 使用 ado 对象的方法和属性,执行命令和操作记录集等。 在数据环境设计器中创建连接和命令对象之后,数据环境设计器在设计时 创建了 dataenvieonmwnr 对象以及从属的 ado 对象。当连接和命令对象的数 据源可用时,可以在程序运行时直接访问数据环境设计器创建的 command、connection 和 recordset 对象,好像这些对象是直接通过 ado 创建 的一样。例如,可以在运行时用代码将数据识别控件绑定到一个命令对象或命 令对象中的字段,也可以在对象关闭时动态地设置 ado connection 和 recordset 对象的属性,并在数据绑定前设置参数值。 microsoft 数据报表设计器(micromft data report designer)是 visual bmic6.0 提供的新的报表设计器,和 visual basic 中已有提供数据源的对象(如数据环境 设计器)一起使用,通过鼠标的拖放操作,可以方便的创建复杂的报表。 datareport 设计器创建的报表可以直接打印,也可以将报表导出到 html 或文 本文件中。 数据库最主要的功能是存储数据和提供信息。数据报表的作用就是将数据 从数据库中检索到的数据,以用户自定义的格式打印出来或是显示在计算机屏 幕上。使用报表可以解决数据库打印格式的特殊要求,也可以解决大量重复性 的劳动。在具体的数据库应用程序中,报表可以解决各种各样的实际问题。例 如:当建成一个完整的数据库系统后,用户可以通过 sql 语句,或事先定义好 的查询来检索数据库中的信息。 通过比较可以发现: ado(activex data object,activex 数据对象)是微软提出的新标准,它 使得客户端应用程序能够通过任何 oledb 提供者来访问和操作数据库服务器 中的数据,而不必进行 odbc 配置。 ado 有两个主要优点:其一是易于使用、速度快、内存支出少和磁盘遗 迹小。其二是“远程数据访问” ,能够通过一个来回的传输将数据从服务器移动 到客户端应用程序或 web 中,然后在客户端对数据进行操作,最后将更新数据 返回服务器。 由于 ado 操作数据库有着其他方法操作数据库无法比拟的优点,所以本 毕业设计选择使用 ado 操作数据库。 第第 3 3 章章 系统分析与设计系统分析与设计 3.1 需求分析 为了更好地适应工作人员对合同管理系统的需求,缓解手工管理存在的弊 端,开发合同管理系统。合同管理系统向用户提供的服务将在传统的“录入-修 改-删除-查找”基础上,进一步提供全方位的信息服务。它具有以下几个特点: (1)可以存储所有合同的资料,具有安全、高效的特性; (2)只需 1 名合同信息录入人员即可操作本合同管理系统,可以节省大量 的人力和物力。 (3)可以通过查询系统迅速查到所需要的信息。 在对合同管理系统的流程进行认真系统的分析后,我认为本系统用户的需 求可以分为 3 个方面:第 1 方面是用户登录管理。只有有权限的用户才能进入 本系统,没有权限的用户或非法用户不能进入本系统,从而有效地保证系统的 安全。第 2 方面是合同信息的查找。能够对合同的具体信息进行查找。可以提 供按时间范围查找、按所属部门查找、按合同编号查找、按客户名称查找、按 合同类别查找、按模糊条件查找。第 3 方面也是合同管理系统的核心工作,即 合同基本信息录入。能够对合同的基本信息进入录入,包括合同的编号、合同 的类别、合同名称、合同部门、所属部门、合同开始日期、合同结束日期、合 同额等。 3.2.模块设计 根据需求分析的结果,我将本系统主要弄分为 6 个子模块:用户登录、图 书管理、图书查询、借阅查询、借阅管理、基础维护。 系统各模块的主要功能如下: (1) 用户登录管理模块。本模块的主要功能是对系统的操作进行限制;只 有有权限的用户才能进入本系统,没有权限的用户或非法用户不能进入本系统, 从而有效地保证系统的安全。 (2) 合同基本信息录入模块。本模块的主要功能是能够对合同的基本信息 进入录入,包括合同的编号、合同的类别、合同名称、合同部门、所属部门、 合同开始日期、合同结束日期、合同额等。 (3) 用户密码修改模块。本模块的主功能是为了保证软件的安全,用户需要 定期修改密码。用户在登录后要能对自己的密码进行修改。 (4)合同统计模块。本模块的主要功能是首先是通过本模块可以浏览到数据 库内所有合同的具体信息,还能添加、删除、修改、保存合同信息。同时,作 为操作本软件的主要平台,通过它能够访问其它的模块,如用户修改模块、收 款模块等。 (5)收款模块。本模块的主要功能是对合同的收款的情况信息进行管理,包 括对收款信息的录入、删除、修改、保存等。 第第 4 4 章章 合同管理系统的实现合同管理系统的实现 4.1 软件流程图 用 户 密 码 修 改 模 块 合同模块(主窗体) 合 同 信 息 录 入 模 块 合 同 模 块 收 款 模 块 基 础 维 护 模 块 用户登录模块 4.2 分析与创建数据库 运行 microsoft 公司的 office2000 办公软件中的 access 数据库软件。 1点击菜单“文件” ,在出现的菜单项中选择“新建”菜单项。 2然后点击“空数据库” ,在弹出的“文件新建数据库”对话框中键入数据库 的名称,本软件中应写入:database.mdb。 3这时系统将会自动进入详细的数据库设计窗体。我们选择“使用设计器”创 建表。 4在弹出的“表 1”设计窗体中,依次写入各个字段名以及他们相对应的数据 类型和说明事项。在本数据库中他们依次是: 字段名称字段名称数据类型数据类型字段大小字段大小作用作用 dbname文本20用户名 dbpassword文本50密码 dbbranch文本50部门 权限文本50权限 5设计好字段名后,关闭并保存表为“login,即“用户登录信息”表 。 6双击“login”表,然后在弹出的数据录入窗体中录入数据,并保存。 因为软件中需要三个数据库表,所以还要在数据库中新建一个“基本资料” 表、 “收款信息”表。下面就用表格的形式分别列出这二个表的字段名称和数据 类型。 基本资料表 字段名称字段名称数据类型数据类型字段大小字段大小作用作用 合同编号文本50合同编号 客户名称文本50客户名称 合同类别文本50合同类别 所属部门文本50所属部门 合同开始日期日期/时间合同开始日期 合同额货币合同额 已收款货币已收款 成本货币成本 已付成本货币已付成本 应付税金货币应付税金 已付税金货币已付税金 未收余额货币未收余额 未付成本货币未付成本 未付税金货币未付税金 项目毛利货币项目毛利 可分配毛利货币可分配毛利 收款计划货币收款计划 合同结束日期日期/时间合同结束日期 收款信息表 字段名称字段名称数据类型数据类型字段大小字段大小作用作用 收款 id文本50收款 id 合同编号文本50合同编号 客户名称文本50客户名称 合同类别文本50合同类别 所属部门文本50所属部门 合同期日期/时间合同期 收款时间日期/时间收款时间 下一期收款时间日期/时间 下一期收款时 间 合同额货币合同额 本期收款货币本期收款 成本货币成本 本期付成本货币本期付成本 应付税金货币应付税金 本期付税金货币本期付税金 未收余额货币未收余额 未付成本货币未付成本 未付税金货币未付税金 项目毛利货币项目毛利 可分配毛利货币可分配毛利 收款计划货币收款计划 收款人文本50收款人 4.3 系统各模块的设计与实现 4.3.1 用户登录管理模块的设计 1. 用户登录管理模块的主要功能是对系统的操作进行限制;只有有权限的 用户才能进入本系统,没有权限的用户或非法用户不能进入本系统,从而有效 地保证系统的安全。 2.界面设计: 新建一个窗体,然后在上面加上各种必须的控件,运行图如下所示: 2.本模块的核心代码及解释: (1)系统显示时自动在用户名的下拉列表里列出所有目前数据库里用户的用 户名,供工作人员选择,即代码如下: private sub form_load() 连接 dim adorecordset as new adodb.recordset mycon.open “provider=microsoft.jet.oledb.4.0;data source=“ _ persist security info=false“ 打开表 with adorecordset .cursortype = adopenkeyset .locktype = adlockoptimistic .open “login“, mycon, , , adcmdtable end with 向用户名中填加记录 if not (adorecordset.bof = true and adorecordset.eof = true) then do until adorecordset.eof = true cobname.additem iif(isnull(adorecordset.fields(“name“).value), _ “, adorecordset.fields(“name“).value) cobname.additem iif(isnull(adorecordset.fields(“dbname“).value), _ “, adorecordset.fields(“dbname“).value) adorecordset.movenext loop end if cobname.text = cobname.list(0) adorecordset.close txtname.enabled = false end sub (2)用户选择用户名并输入密码后,按“确定”按钮触发的事件代码如下: private sub cmdok_click() dim adomrc as adodb.recordset strtxtsql = “select * from login where dbpassword = “ the regiments were called legions; instead of numbers they bore the names of departments; napoleon was at st. helena; and since england refused him green cloth, he was having his old coats turned.in 1817 pelligrini sang; mademoiselle bigottini danced; potier reigned; odry did not yet exist. madame saqui had succeeded to forioso.there were still prussians in france. m. delalot was a personage.legitimacy had just asserted itself by cutting off the hand, then the head, of pleignier, of carbonneau, and of tolleron.the prince de talleyrand, grand chamberlain, and the abbe louis, appointed minister of finance, laughed as they looked at each other, with the laugh of the two augurs; both of them had celebrated, on the 14th of july, 1790, the mass of federation in the champ de mars; talleyrand had said it as bishop, louis had served it in the capacity of deacon. in 1817, in the side-alleys of this same champ de mars, two great cylinders of wood might have been seen lying in the rain, rotting amid the grass, painted blue, with traces of eagles and bees, from which the gilding was falling. these were the columns which two years before had upheld the emperors platform in the champ de mai.they were blackened here and there with the scorches of the bivouac of austrians encamped near gros-caillou. two or three of these columns had disappeared in these bivouac fires, and had warmed the large hands of the imperial troops. the field of may had this remarkable point: that it had been held in the month of june and in the field of march (mars). in this year, 1817, two things were popular: the voltaire-touquet and the snuff-box a la charter.the most recent parisian sensation was the crime of dautun, who had thrown his brothers head into the fountain of the flower-market. they had begun to feel anxious at the naval department, on account of the lack of news from that fatal frigate, the medusa, which was destined to cover chaumareix with infamy and gericault with glory.colonel selves was going to egypt to become soliman-pasha. the palace of thermes, in the rue de la harpe, served as a shop for a cooper.on the platform of the octagonal tower of the hotel de cluny, the little shed of boards, which had served as an observatory to messier, the naval astronomer under louis xvi., was still to be seen.the duchesse de duras read to three or four friends her unpublished ourika, in her boudoir furnished by x. in sky-blue satin. the ns were scratched off the louvre. the bridge of austerlitz had abdicated, and was entitled the bridge of the kings garden du jardin du roi, a double enigma, which disguised the bridge of austerlitz and the jardin des plantes at one stroke. louis xviii., much preoccupied while annotating horace with the corner of his finger-nail, heroes who have become emperors, and makers of wooden shoes who have become dauphins, had two anxieties,-napoleon and mathurin bruneau.the french academy had given for its prize subject, the happiness procured through study. m. bellart was officially eloquent.in his shadow could be seen germinating that future advocate-general of broe, dedicated to the sarcasms of paul-louis courier.there was a false chateaubriand, named marchangy, in the interim, until there should be a false marchangy, named darlincourt. claire dalbe and malek-adel were masterpieces; madame cottin was proclaimed the chief writer of the epoch. the institute had the academician, napoleon bonaparte, stricken from its list of members. a royal ordinance erected angouleme into a naval school; for the duc dangouleme, being lord high admiral, it was evident that the city of angouleme had all the qualities of a seaport; otherwise the monarchical principle would have received a wound.in the council of ministers the question was agitated whether vignettes representing slack-rope performances, which adorned franconis advertising posters, and which attracted throngs of street urchins, should be tolerated. m. paer, the author of agnese, a good sort of fellow, with a square face and a wart on his cheek, directed the little private concerts of the marquise de sasenaye in the rue ville leveque. all the young girls were singing the hermit of saint-avelle, with words by edmond geraud. the yellow dwarf was transferred into mirror. the cafe lemblin stood up for the emperor, against the cafe valois, which upheld the bourbons.the duc de berri, already surveyed from the shadow by louvel, had just been married to a princess of sicily. madame de stael had died a year previously. the body-guard hissed mademoiselle mars.the grand newspapers were all very small. their form was restricted, but their liberty was great. the constitutionnel was constitutional.la minerve called chateaubriand chateaubriant. that t made the good middle-class people laugh heartily at the expense of the great writer.in journals which sold themselves, prostituted journalists, insulted the exiles of 1815. david had no longer any talent, arnault had no longer any wit, carnot was no longer honest, soult had won no battles; it is true that napoleon had no longer any genius.no one is ignorant of the fact that letters sent to an exile by post very rarely reached him, as the police made it their religious duty to intercept them. this is no new fact; descartes complained of it in his exile. now david, having, in a belgian publication, shown some displeasure at not receiving letters which had been written to him, it struck the royalist journals as amusing; and they derided the prescribed man well on this occasion.what separated two men more than an abyss was to say, the regicides, or to say the voters; to say the enemies, or to say the allies; to say napoleon, or to say buonaparte. all sensible people were agreed that the era of revolution had been closed forever by king louis xviii., surnamed “the immortal author of the charter.“on the platform of the pont-neuf, the word redivivus was carved on the pedestal that awaited the statue of henry iv. m. piet, in the rue therese, no. 4, was making the rough draft of his privy assembly to consolidate the monarchy. the leaders of the right said at grave conjunctures, “we must write to bacot.“ mm. canuel, omahoney, and de chappedelaine were preparing the sketch, to some extent with monsieurs approval, of what was to become later on “the conspiracy of the bord de leau“-of the waterside.lepingle noire was already plotting in his own quarter.delaverderie was conferring with trogoff. m. decazes, who was liberal to a degree, reigned. chateaubriand stood every morning at his window at no. 27 rue saint-dominique, clad in footed trousers, and slippers, with a madras kerchief knotted over his gray hair, with his eyes fixed on a mirror, a complete set of dentists instruments spread out before him, cleaning his teeth, which were charming, while he dictated the monarchy according to the charter to m. pilorge, his secretary. criticism, assuming an authoritative tone, preferred lafon to talma. m. de feletez signed himself a.; m. hoffmann signed himself z. charles nodier wrote therese aubert.divorce was abolished. lyceums called themselves colleges.the collegians, decorated on the collar with a golden fleur-de-lys, fought each other apropos of the king of rome. the counter-police of the chateau had denounced to her royal highness madame, the portrait, everywhere exhibited, of m. the duc dorleans, who made a better appearance in his uniform of a colonel- general of hussars than m. the duc de berri, in his uniform of colonel-general of dragoons- a serious inconvenience. the city of paris was having the dome of the invalides regilded at its own expense. serious men asked themselves what m. de trinquelague would do on such or such an occasion; m. clausel de montals differed on divers points from m. clausel de coussergues; m. de salaberry was not satisfied. the comedian picard, who belonged to the academy, which the comedian moliere had not been able to do, had the two philiberts played at the odeon, upon whose pediment the removal of the letters still allowed theatre of the empress to be plainly read. people took part for or against cugnet de montarlot. fabvier was factious; bavoux was revolutionary.the liberal, pelicier, published an edition
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
评论
0/150
提交评论