登录
首页 » Visual C++ » maketshouyin

maketshouyin

于 2012-12-03 发布 文件大小:1238KB
0 118
下载积分: 1 下载次数: 21

代码说明:

  超市前台收银系统用 c++ 和达梦数据库,包含数据库文件和源代码。(Supermarket front cash register system with c++ and dream up database that contains the database files and source code.)

文件列表:

超市收银系统 数据库课程设计
...........................\dm.sql,3802,2008-09-07
...........................\ReadMe.txt,514,2008-09-17
...........................\可执行程序
...........................\..........\SupermarketCahsier.exe,516214,2008-09-11
...........................\..........\user.dat,6,2008-09-17
...........................\数据库课程设计报告.doc,701440,2008-09-17
...........................\源代码(工程)
...........................\..............\CashierLogDlg.cpp,3571,2008-09-08
...........................\..............\CashierLogDlg.h,1305,2008-09-07
...........................\..............\CashierOperationDLg.cpp,36996,2008-09-09
...........................\..............\CashierOperationDLg.h,2433,2008-09-08
...........................\..............\CashierRecordSet.cpp,1567,2008-09-01
...........................\..............\CashierRecordSet.h,1412,2008-09-01
...........................\..............\CashinfoRecordSet.cpp,1476,2008-09-01
...........................\..............\CashinfoRecordSet.h,1399,2008-09-01
...........................\..............\CustomerRecordSet.cpp,1630,2008-09-06
...........................\..............\CustomerRecordSet.h,1441,2008-09-06
...........................\..............\Debug
...........................\..............\.....\SupermarketCahsier.exe,516214,2008-09-11
...........................\..............\.....\user.dat,6,2008-09-14
...........................\..............\GoodsRecordSet.cpp,1467,2008-09-01
...........................\..............\GoodsRecordSet.h,1369,2008-09-01
...........................\..............\HelpDlg.cpp,1336,2008-09-08
...........................\..............\HelpDlg.h,1226,2008-09-08
...........................\..............\MainFrm.cpp,10548,2008-09-08
...........................\..............\MainFrm.h,2617,2008-09-08
...........................\..............\QueryCashinfoRecordSet.cpp,1626,2008-09-07
...........................\..............\QueryCashinfoRecordSet.h,1473,2008-09-07
...........................\..............\QueryTradeinfoRecordSet.cpp,1716,2008-09-11
...........................\..............\QueryTradeinfoRecordSet.h,1520,2008-09-08
...........................\..............\ReadMe.txt,4599,2008-08-31
...........................\..............\res



...........................\..............\...\SupermarketCahsier.rc2,410,2008-08-31

...........................\..............\resource.h,3151,2008-09-08
...........................\..............\StdAfx.cpp,220,2008-08-31
...........................\..............\StdAfx.h,1095,2008-09-01
...........................\..............\SupermarketCahsier.aps,291952,2008-09-11
...........................\..............\SupermarketCahsier.clw,7159,2008-09-11
...........................\..............\SupermarketCahsier.cpp,4909,2008-09-08
...........................\..............\SupermarketCahsier.dsp,6631,2008-09-09
...........................\..............\SupermarketCahsier.dsw,544,2008-08-31
...........................\..............\SupermarketCahsier.h,1844,2008-09-06
...........................\..............\SupermarketCahsier.ncb,254976,2008-09-14
...........................\..............\SupermarketCahsier.opt,58880,2008-09-14
...........................\..............\SupermarketCahsier.plg,1646,2008-09-11
...........................\..............\SupermarketCahsier.rc,17654,2008-09-08
...........................\..............\SupermarketCahsierDoc.cpp,1982,2008-08-31
...........................\..............\SupermarketCahsierDoc.h,1607,2008-08-31
...........................\..............\SupermarketCahsierView.cpp,4344,2008-09-09
...........................\..............\SupermarketCahsierView.h,2205,2008-09-09
...........................\..............\TradeDlg.cpp,6911,2008-09-08
...........................\..............\TradeDlg.h,1666,2008-09-08
...........................\..............\TradeinfoRecordSet.cpp,1501,2008-09-01
...........................\..............\TradeinfoRecordSet.h,1405,2008-09-01
...........................\..............\user.dat,6,2008-09-11

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

发表评论


0 个回复

  • MDAC2.6
    MDAC(Microsoft Data Access Components)是微软数据库访问组件,Netpise和许多利用数据库的软件都需要操作系统安装MDAC。很多用户的操作系统中已经存在了MDAC,有些是操作系统内置的、有些是其它应用程序安装的。(MDAC (Microsoft Data Access Components) is a Microsoft database access components, Netpise and many need to use the database software operating system to install MDAC. Many users of the operating system already exists in the MDAC, some built-in operating system, some other applications installed.)
    2010-07-05 02:04:55下载
    积分:1
  • SpellChecking
    英文文章中单词拼写检查,并推荐可能存在的正确单词示例源码(Article in the English word spelling checker, and recommend the correct word there may be examples of source)
    2007-08-03 01:19:16下载
    积分:1
  • DNS_Lookup
    窗口方式下域名解析,DNS域名解析系统。(Window mode, DNS, DNS domain name system.)
    2009-11-02 13:08:46下载
    积分:1
  • client-server
    多协议文件传输c/s网络应用设计与实现,程序用 TCP/UDP 两个协议模拟多协议服务器。首先服务器端要将两种协议的套接字创建好,并且监听 TCP 端口的连接。必要时使用select函数来进行多连接处理和非阻塞处理。而客户端直接可以按照发送的地址和端口号来进行通讯。 首先要运行服务器端,服务器会监听 TCP 端口。然后运行客户端,根据事先设定好的 IP和端口,就可以进行连接传输数据了。 程序实现的关键步骤: 以TCP协议为例 服务器端: 1.创建套接字;2.绑定端口;3.进入无穷的循环;4.接收请求;5.处理请求;6.应答。 客户端: 1.找到服务器的IP地址和协议的端口号;2.创建套接字;3.确定连接需要任意的,没有使用的端口号允许TCP去选择一个;4.将套接字和服务器连接;5.使用应用层协议和服务器交互;6.关闭连接。 (Multi-protocol file transfer c/s network application design and implementation of programs simulate multi-protocol server with TCP/UDP both protocols. First socket server to create a good two protocols, TCP port and listens for connections. If necessary, use the function to handle multiple connections and non-blocking treatment. And the client can follow directly address and port number to communicate. First run on the server side, the server listens on TCP port. Then run the client, according to pre-configured IP and port, you can connect the data transmission. The key step program implementation: In TCP protocol as an example Service-Terminal: 1. Create a socket 2 bound port 3 enter an infinite loop 4. receiving a request 5. processing requests 6 response. Clients: 1. Locate the server s IP address and protocol port number 2 creates a socket 3 connections need to determine arbitrary, unused port allows TCP to choose a 4 and the socket server connections 5 using appli)
    2016-07-11 10:19:07下载
    积分:1
  • wangka
    C++编写的读取电脑C盘序列号程序.大家审查(Written in C++ C disk to read the serial number of the computer program. Everybody Review)
    2013-12-20 11:22:21下载
    积分:1
  • evaporation-of-sodium---973K
    fluent中蒸发冷凝的udf源码,基于Lee模型,可用于相变模拟。(fluent evaporated condensed udf source, based on Lee model can be used to simulate the phase change.)
    2016-03-05 17:57:23下载
    积分:1
  • covpliwr
    简单的学籍管理系统 可以基本完成录入导出 学生的信息,不错(Simple student status management system can basically complete the input and export of student information, good)
    2018-12-05 12:45:29下载
    积分:1
  • usbview_test
    基于WDK开发,查看USB设备信息, 编译成DLL动态库,可直接调用(Developed based on the DDK, see the USB device information, compiled into a DLL dynamic libraries, and can be called directly)
    2012-04-10 16:39:23下载
    积分:1
  • view
    一个视图切换的例子! 做课程设计时要用到的一个关键技术之一!! 希望朋友们来看(An example of switching the view! Do curriculum design is a key technology to use one! ! I hope you will see)
    2013-08-07 17:15:07下载
    积分:1
  • p26_vc
    264编解码相关工程,包含测试内容,对264编解码的了解有一定作用(264 codec-related projects, including the contents of the tests on the 264 codec has a role to understand)
    2010-05-23 10:07:29下载
    积分:1
  • 696518资源总数
  • 104612会员总数
  • 24今日下载