CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - 打印类

搜索资源列表

  1. dbg

    0下载:
  2. 自己写的dmp调试信息类,如果程序出现崩溃,该类会打印出错误信息。可以用WINDBG进行调试分析-Dmp debug information to write their own class , if the program crashes, the class will print an error message . Can be used for debugging analysis WINDBG
  3. 所属分类:ADO-ODBC

    • 发布日期:2017-04-15
    • 文件大小:5269
    • 提供者:j19huangzh
  1. PrintDoc

    0下载:
  2. 这个程序是我们实验室正在用的一个程序。该程序可以利用C#的printdoc类库对doc/pdf等文档进行打印,希望能有用。- This program is a program that we are using the lab. The program can take advantage of the C# class library printdoc doc/pdf documents such as print, hoping to be useful.
  3. 所属分类:Other windows programs

    • 发布日期:2017-05-04
    • 文件大小:45819
    • 提供者:lv
  1. shop

    0下载:
  2. 定义一个商品类,其中包括商品号,商品名,商品价格三个数据成员以及两个以上的构造函数,获取个信息类的方法,修改价格的方法,打印数据的方法,并在定一个食品子类,一个玩具子类,-Define a class goods, including goods, goods name, commodity prices three data members and more than two constructors, access to information class methods, modify t
  3. 所属分类:Compress-Decompress algrithms

    • 发布日期:2017-05-04
    • 文件大小:72813
    • 提供者:潘安琴
  1. Digital-Printing

    0下载:
  2. 编写一个主类Triangle,要求在它的main方法中写一个嵌套的for循环,通过这个嵌套的循环在屏幕上打印图案:-Write a main class Triangle, it requires writing a nested for loop in its main method by which nested loop pattern is printed on the screen:
  3. 所属分类:File Formats

    • 发布日期:2017-04-12
    • 文件大小:585
    • 提供者:李佳
  1. Class-accessor

    0下载:
  2. 编写一个类,描述银行账户,包括收入、支出和账户余额三种属性,同时包括对这三种属性的读、写的访问器方法,这三种属性都定义为私有的。 该类定义的银行账户还能够通过自己的收入和支出自动计算账户余额。对于账户余额只能读取,自动计算,但不能够直接赋值,也就是不能够写。 编写一个测试类,输入收入和支出项,打印账户余额。 -Write a class that describes bank accounts, including income, expenses and account balan
  3. 所属分类:Document

    • 发布日期:2017-04-12
    • 文件大小:667
    • 提供者:李佳
  1. Phonenum

    0下载:
  2. 实现一个表示电话号码(要求带有区号和号码,如 010-68911205)的 Phone 类,其中某个构造函数的参数应为表示电话号码的字符串。要求实现相应的 set 和 get 函数来分别设置及获取电话号码中的区号(area,如 010)和号码(number, 如 68911205),重写 Object.toString( )函数打印出整个电话号码。(提示:可使用 String.indexOf( )和 String.substring( )等函数)-Implement a said
  3. 所属分类:Ajax

    • 发布日期:2017-04-12
    • 文件大小:646
    • 提供者:胡鹏
  1. exp10.2.5

    0下载:
  2. 设计一个 类,储存个人的姓名,地址,邮编,用string类型储存,分别为name,addr,zip。 有默认构造函数,转换构造函数,析构,打印函数。-Design a class, store an individual' s name, address, zip code, with a string type storage, respectively name, addr, zip. We have a default constructor, conversion constr
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-12
    • 文件大小:1076
    • 提供者:jianyoung
  1. Android_Log4j

    0下载:
  2. Android开发的日记打印工具类Log4jForAndroid和LogUtil-Android Developer Diary Print and tools Log4jForAndroid LogUtil
  3. 所属分类:android

    • 发布日期:2017-05-11
    • 文件大小:2162688
    • 提供者:Feng
  1. 201611091347

    0下载:
  2. pb9+access2000 托盘应用 自定义报表 自定义纸张 可选皮肤 类word打印预览 其中自定义报表系统,打印模块都可以导出-Pb9+ access 2000 Pallet application Customize the report Custom paper Optional skin Class word print preview Which custom report system, print module can be ex
  3. 所属分类:Other windows programs

    • 发布日期:2017-05-09
    • 文件大小:1773282
    • 提供者:小丑鱼
  1. daima3

    0下载:
  2. 1. 编写字符串类CTString,设计样式如下: class CTString { char *m_pData // 用于保存字符数据 int m_nLen // 记录字符长度 public: // 构造函数和析构函数 CTString() CTString(char *) CTString(const CTString&) ~ CTString() // 其它成员函数 CTString *Copy(CTString
  3. 所属分类:Other systems

    • 发布日期:2017-05-04
    • 文件大小:8603
    • 提供者:牟蓉
  1. PrintStudy

    0下载:
  2. C# 打印文本文件和图片文件功能,包括PrintService类,其中关键问题有详细的备注。-Print text files and image file functions, including PrintService class, which has detailed notes of key issues.
  3. 所属分类:CSharp

    • 发布日期:2017-05-05
    • 文件大小:16491
    • 提供者:王军
  1. StudentTestKaoShi_4

    0下载:
  2. 分析以下需求,并用代码实现: 1. 自定义一个类学生 学生中有姓名和年龄属性 2. 利用new关键字创建4个学生 为4个学生的姓名和年龄赋值 3. 将这四个学生添加到集合中 4. 利用冒泡排序算法,对集合中的学生按照年龄从小到大排序 5. 最终遍历集合中排序好的学生,打印学生的姓名和年龄-Analyze the following requirements and implement them in code: 1. Customize a class s
  3. 所属分类:Java Develop

    • 发布日期:2017-04-12
    • 文件大小:913
    • 提供者:田朝辉
  1. foocesssaddress

    0下载:
  2. 是一个为打印程序编写的类库大全,学习的好工具-Is a class library for print programming, a good learning tool
  3. 所属分类:source in ebook

    • 发布日期:2017-12-15
    • 文件大小:175104
    • 提供者:YHMaizhk+79780
  1. qopeuseful

    0下载:
  2. 一个关于CFormView类打印的例子,很有启发意义,很好用的-An example on the print CFormView type, is of great enlightening significance, very useful
  3. 所属分类:Process-Thread

    • 发布日期:2017-12-13
    • 文件大小:19059
    • 提供者:hypekdsxt
  1. dialop

    0下载:
  2. 一个很好的打印机类库,支持打印预览,打印机设置,多页打印,重载打印机对话框等功能-A good printer class libraries, support print preview, printer Settings, many pages to print, overloading printer dialog box, and other functions
  3. 所属分类:DirextX

    • 发布日期:2017-12-15
    • 文件大小:106496
    • 提供者:Gloxhr
  1. dbcisiin_library_functor

    0下载:
  2. 是一个为打印程序编写的类库大全,学习的好工具-Is a class library for print programming, a good learning tool
  3. 所属分类:Game Program

    • 发布日期:2017-12-12
    • 文件大小:175711
    • 提供者:Mhhdyl
  1. LEIJAVA

    0下载:
  2. 编写一个名为“复数”的类,包含复数的实部和虚部(数据成员),以及复数之间的基本算术运算:加、减(方法成员),并要求复数加减运算,程序运行中能对给定的复数进行运算,并打印运算的结果。-Write a class called complex number that contains the complex number of the real and imaginary parts (data members), and the basic arithmetic operations betw
  3. 所属分类:JavaScript

    • 发布日期:2017-12-11
    • 文件大小:15677
    • 提供者:魏倩
  1. PhoneNumber

    0下载:
  2. 实现一个表示电话号码(要求带有区号和号码,如010-68911205)的Phone类,其中某个构造函数的参数应为表示电话号码的字符串。要求实现相应的set和get函数来分别设置及获取电话号码中的区号(area,如010)和号码(number,如68911205),重写Object.toString( )函数打印出整个电话号码。(提示:可使用String.indexOf( )和String.substring( )等函数)(A telephone number (expressed with th
  3. 所属分类:Java编程

    • 发布日期:2017-12-11
    • 文件大小:10134
    • 提供者:zw2044
  1. 1372673

    0下载:
  2. 是一个为打印程序编写的类库大全,学习的好工具(Is a class library for print programming, a good learning tool)
  3. 所属分类:Windows编程

    • 发布日期:2017-12-27
    • 文件大小:175104
    • 提供者:xyzhia
  1. AVLTree

    0下载:
  2. 二叉平衡树类模板的实现,删除、插入和打印等功能。(Implementation of two fork balanced tree template)
  3. 所属分类:数据结构

    • 发布日期:2017-12-22
    • 文件大小:1024
    • 提供者:小屌Iris
« 1 2 ... 17 18 19 20 21 2223 24 »
搜珍网 www.dssz.com