登录
首页 » Visual C++ » ch3

ch3

于 2010-06-23 发布 文件大小:2267KB
0 196
下载积分: 1 下载次数: 18

代码说明:

  水晶报表VC实例,实例主要实现了水晶报表的按组字段分类,按字段排序,以及检索功能(CrystalReports)

文件列表:

ch3
...\CreateBasicReport
...\.................\craxddrt.tlb,241600,2001-02-02
...\.................\craxddrt.tlh,592691,2001-02-02
...\.................\craxddrt.tli,466276,2001-02-02
...\.................\CreateBasicReport.aps,22164,2010-06-06
...\.................\CreateBasicReport.clw,1661,2010-06-19
...\.................\CreateBasicReport.cpp,2217,2002-05-03
...\.................\CreateBasicReport.dsp,5250,2002-05-03
...\.................\CreateBasicReport.dsw,603,2002-05-03
...\.................\CreateBasicReport.h,1445,2002-05-03
...\.................\CreateBasicReport.ncb,91136,2010-06-19
...\.................\CreateBasicReport.opt,56832,2010-06-19
...\.................\CreateBasicReport.plg,268,2010-06-18
...\.................\CreateBasicReport.rc,6543,2010-06-06
...\.................\CreateBasicReportDlg.cpp,8230,2010-06-06
...\.................\CreateBasicReportDlg.h,1880,2002-05-03
...\.................\crvtrackcursorinfo.cpp,2273,2002-05-03
...\.................\crvtrackcursorinfo.h,1570,2002-05-03
...\.................\crystalreportviewer4.cpp,13269,2002-05-03
...\.................\crystalreportviewer4.h,4401,2002-05-03
...\.................\Debug
...\.................\.....\craxddrt.tlh,592837,2001-02-02
...\.................\.....\craxddrt.tli,466349,2001-02-02
...\.................\.....\CreateBasicReport.exe,147658,2010-06-06
...\.................\.....\CreateBasicReport.ilk,340516,2010-06-06
...\.................\.....\CreateBasicReport.obj,23543,2010-06-06
...\.................\.....\CreateBasicReport.pch,5509772,2010-06-06
...\.................\.....\CreateBasicReport.pdb,680960,2010-06-06
...\.................\.....\CreateBasicReport.res,3212,2010-06-06
...\.................\.....\CreateBasicReportDlg.obj,153408,2010-06-06
...\.................\.....\crvtrackcursorinfo.obj,10209,2010-06-06
...\.................\.....\crystalreportviewer4.obj,66773,2010-06-06
...\.................\.....\StdAfx.obj,106668,2010-06-06
...\.................\.....\vc60.idb,254976,2010-06-18
...\.................\.....\vc60.pdb,610304,2010-06-06
...\.................\res

...\.................\...\CreateBasicReport.rc2,409,2002-05-03
...\.................\resource.h,1063,2002-05-03
...\.................\StdAfx.cpp,219,2002-05-03
...\.................\StdAfx.h,1054,2002-05-03
...\.................\student.mdb,131072,2010-06-06
...\.................\Student.rpt,22528,2002-08-29

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • paidui
    1、首先,我们分析调查到的数据,发现学生流符合泊松分布,服务时间符合指数分布,由此我们的模型就变成了排队论中典型的MM 模型,根据MM 模型中的各效率指标的公式,我们可得到学一食堂拥挤情况的各方面数据。 2、根据模型求解得到的数据,我们对模型进行了更精确的量化分析。我们发现,解决本模型的关键就在于分析顾客平均排队时间,我们对其与窗口数之间的关系进行了拟合,并就两者之间关系进行了灵敏度分析。 3、针对窗口数与顾客平均排队时间之间的关系,我们从经济学的角度进行了分析,即比较增加窗口后成本的增加量与减少排队等待时间所带来的收益之间的大小关系。 (err)
    2021-04-11 15:08:58下载
    积分:1
  • TraceHook
    windows进程内存转储(dump)工具,它能够附加到进程,读取进程的整个内存,然后,将进程整个内存的数据保存到磁盘上。该工具不同于LordPE 和OllyDump,因为它可以下载进程的整个内存到磁盘上。(windows process memory dump (dump) tool, which can be attached to the process, read the entire memory of the process, and then the entire memory of the process data is saved to disk. The the tool unlike LordPE Ollydump because it can download the entire process memory to disk.)
    2013-05-12 17:12:08下载
    积分:1
  • SoundFx
    DirectSound加VC6.0实现播放Wav文件时添加各种音响效果(DirectSound plus VC6.0 for playing Wav file to add various sound effects)
    2011-06-29 01:46:33下载
    积分:1
  • dynviews
    说明:  非基于MFC的文档/视图结构创建多维动态视图,轻松创建多维视图的效果,通过openGL,实现效果显示。(Are not based on MFC s document/view structure to create multi-dimensional and dynamic view, to easily create multi-dimensional view of the effect, through openGL, to achieve the effect of show.)
    2008-10-16 23:05:39下载
    积分:1
  • 220-classic-C-program-source-code
    本文件夹中含有220个经典C程序源码,是学习C语言难得的好资料!(220 classic C program source code)
    2013-12-28 00:00:05下载
    积分:1
  • Pthread-of-linux
    在linux环境下编写一个控制台应用程序,程序中有一个共享的整型变量shared_var,初始值为0;创建一个线程并使其立即与主线程并发执行。新创建的线程与主线程均不断地循环,并输出shared_var 的值。主线程在循环中不断地对shared_var 进行加1操作,即每次循环shared_var 被加1;而新创建的线程则不断地对shared_var 进行减1 操作,即每次循环shared_var 被减1。观察程序运行的结果,并对你看到的现象进行解释。(Written in the linux environment a console application, the program has a shared integer variable shared_var, the initial value of 0 create A thread and make it run concurrently with the main thread immediately. The newly created thread and main thread are constantly circulating, and the output shared_var Value. The main thread in a loop constantly on shared_var are incremented, that is plus 1 for each cycle shared_var and the new line created Process is constantly on the shared_var decremented, that is, each cycle shared_var is decreased by 1. Observe the results of running the program, and you To explain the phenomenon seen.)
    2011-12-08 11:21:25下载
    积分:1
  • VC_Net
    Visual C++ 网络编程精选实例。TCP/IP,串口网络通信。配书光盘。(Visual C++ network programming selected examples. TCP/IP, serial network communications. CD-ROM with the book.)
    2020-11-22 14:29:36下载
    积分:1
  • get_ie_version
    获取IE版本号(Getting version number of IE)
    2020-12-01 21:59:28下载
    积分:1
  • CG_Client_Source
    这是一个C++写的魔力宝贝登录器.直接可以通过编译. CG_Client.aps CG_Client.cpp(This is a C++ write the Magic Baby login device. CG_Client.aps CG_Client.cpp)
    2021-02-24 13:19:39下载
    积分:1
  • 3.3.3用户登录实例
    说明:  3.3.3用户登录实例,VB6.0 源码..学习中!!!!!(Documents are printed into PDF files)
    2020-06-23 16:20:02下载
    积分:1
  • 696518资源总数
  • 105877会员总数
  • 14今日下载