登录
首页 » 按钮控件 » db_record is a set of industry

db_record is a set of industry

于 2022-01-26 发布 文件大小:10.35 kB
0 142
下载积分: 2 下载次数: 1

代码说明:

db_record 是一套专门针对配送行业实现销售管理的软件系统,全面适用于物流配送领域中的各级各类经营企业(如:纯净水、煤气、牛奶等等)。该软件完美紧密跟踪配送业务的特点;实现完善的销售管理;生成丰富多样的销售报表;具有严密的操作使用权限控制;应用最新独特的来电显示技术。本软件采用大型网络数据库C/S结构,保证20台客户端电脑连接流畅稳定。 1、业务(收入、支出)处理模块:配送业务的开票、收款、收空包、核对入帐等。 2、查询汇总:业务流水记录、数十种组合方式的汇总统计。 3、排行榜:与应收、实收、欠收及日期段任意组合,按配送员、客户、商品排序。 4、报表输出:数十种销售报表随意输出为Excel格式。 5、费率设置:多种客户销售价格以及配送工报酬计算方式。 6、人员信息:包含软件操作员、员工、客户等基本信息。 7、数据库处理:新套帐的建立、数据备份及还原、数据提交与回滚等。-db_record is a set of industry-specific distribution sales management software system, applicable to the field of logistics and distribution of various business enterprises at all levels (eg : clean water, gas, milk, etc.). Perfect the software distribution business to closely track the characteristics; To achieve the perfect sales management; Generate a variety of sales statements; With tight control authority to operate; The unique application of the latest technology CND. The software uses large network database C/S structure, and ensuring Taiwan"s 20 client computers with the smooth stability

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

发表评论

0 个回复

  • MiniGUI for real
    MiniGUI 为实时嵌入式操作系统提供了非常完善的图形及图形用户界面支持。MiniGUI 本身的可移植性设计,使得不论在哪个硬件平台、哪种操作系统上运行,MiniGUI 均能为上层应用程序提供一致的应用程序编程接口(API)。 minigui中button控件的实现-MiniGUI for real-time embedded operating system offers excellent graphics and graphical user interface support. MiniGUI itself portability design, which makes both the hardware platform or operating system running on MiniGUI can for top applications to provide a consistent application programming interface (API). MiniGUI which button controls to achieve
    2022-02-05 17:53:30下载
    积分:1
  • 代码演示了C# windowsForm 中的各个对话框,包括打开关闭文对话框,颜色对话框,字体对话框,打印及打印预览对话框。...
    代码演示了C# windowsForm 中的各个对话框,包括打开关闭文件对话框,颜色对话框,字体对话框,打印及打印预览对话框。-demonstrated a code C# windowsForm the various dialog boxes, including the closure of open file dialog, the dialog color, font dialog, Print and Print Preview dialog.
    2022-11-21 07:30:03下载
    积分:1
  • variety of different kinds of buttons, yes
    各种样式 的按钮,不错-variety of different kinds of buttons, yes
    2022-02-15 21:29:56下载
    积分:1
  • 本人热中与vb开发小软 因为我只是一个学生哦,现在仍在锻炼中,有什么问题一定指教...
    本人热中与vb开发小软件 因为我只是一个学生哦,现在仍在锻炼中,有什么问题一定指教-enthusiastic vb small software development because I am just a student, oh, it is still being tempered, what will enlighten
    2023-02-18 04:40:03下载
    积分:1
  • 静态切分窗口,这个类是从WTL的SplitterWnd里面扒出来的,因为MFC的SplitterWnd实在是 太太太难用了,而且很难看,看到WTL里面的这个不错...
    静态切分窗口,这个类是从WTL的SplitterWnd里面扒出来的,因为MFC的SplitterWnd实在是 太太太难用了,而且很难看,看到WTL里面的这个不错,想拿来用,不过如果是MFC程序的话再加上WTL的风格有些不协调,就干脆把它的形式改成MFC的风格了,函数看着挺多,不过常用并不多,至于注释嘛,我只是在经常用的函数声明上大概写了几句,相知道具体实现,那就去看代码吧:)-splitting static window, this category is from the WTL serving SplitterWnd inside out, because MFC SplitterWnd wife is too hard to use and hard to see inside the WTL Yes, they will apply to, but if MFC procedures for the WTL coupled with the style of some disharmony on stem crisp it into the form of MFC style, watching sport the function, but more commonly used is not as Notes, but as I was frequently used function declaration probably write a few words, is to know the specific realization, then look at the code it :)
    2022-06-02 06:01:45下载
    积分:1
  • 一个很好用的图象特效,请参考其中的源带代码学习怎么使用...
    一个很好用的图象特效控件,请参考其中的源带代码学习怎么使用-a good image with the effects controls, please refer to the source code with learning how to use
    2022-01-25 22:08:07下载
    积分:1
  • 谷 歌 Chrome进度条
    翻译 maninwest@Codeforge 作者:VallarasuS@CodeProject这里展示如何从头开始创建一个 Go ogle Chrome 主题的 进度条。任何进度条控件都依赖于一个值及表示进度值的图形。 Goo gle Chrome 下载程序有个圆圈表示进度。使用代码ChromeProgressBaris 跟 Chrome ProgressBar 的工作原理一样。将进度值转化为一个圆圈图形来表示.private void PaintProgress(PaintEventArgs e) { using( SolidBrush progressBrush = new SolidBrush(this.ProgressColor)) { Rectangle rect = LayoutInternal.ProgressRectangle; rect.Inflate(-2, -2); rect.Height -= 2; rect.Width -= 2; float startAngle = -90; float sweepAngle = Progress / 100 * 360; e.Graphics.FillPie(progressBrush, rect, startAngle, sweepAngle); } }这里是如何使用图形路径和4条线绘制圆圈和细分部分。对 Graphics 对象的剪切部分进行调整来剪切圆圈外的线。private void PaintBorder(PaintEventArgs e) { GraphicsPath borderPath = new GraphicsPath(); Rectangle progressRect = LayoutInternal.Prog
    2022-08-08 07:55:37下载
    积分:1
  • the procedures introduced by a group check box to control internal controls so a...
    本程序介绍一个由check组框来控制内部控件使能 在要使用的工程中添加类CCheckableGroupBox 在资源中属于这个组框的控件设置group项目 在使用的类中 坐组框的变量映射 CCheckableGroupBox m_groupD CCheckableGroupBox m_groupQ CCheckableGroupBox m_groupZ 在使用类的初始化中 m_groupZ.SetTitleStyle(BS_AUTOCHECKBOX) //Default to check box already in class m_groupZ.SetGroupID(1) m_groupQ.SetTitleStyle(BS_AUTORADIOBUTTON) m_groupQ.SetGroupID(0) m_groupQ.SetCheck(1) m_groupD.SetTitleStyle(BS_AUTORADIOBUTTON) m_groupD.SetGroupID(0) SetTitleStyle:函数中1BS_AUTOCHECKBOX:为方型框.2BS_AUTORADIOBUTTON:为原型框 SetGroupID函数:参数中为1:不用内部控件不用选择group项目,为0要选择 Setcheck函数:参数为1:enabel,为0:unenable-the procedures introduced by a group check box to control internal controls so as to enable the project to use the added category CCheckableGroupBox resources belonging to the group box set of controls group projects in the category sitting Group variable frame mapping CCheckableGroupBox m_groupD CCheckableGroupBox m_groupQ CCheckableGroupBox m_groupZ the use of the initial category m_groupZ.SetTitleS
    2022-11-13 07:15:03下载
    积分:1
  • 在*作滚动实例VisualBasic使用.zip
    use visualbasic for make scroll exsample in *.zip-use visualbasic for make scroll exsample in*.zip
    2022-09-08 12:55:03下载
    积分:1
  • Mac,Office 2003,WinXP等多种风格的
    Mac,Office 2003,WinXP等多种风格的按钮控件-Mac, Office 2003, WinXP various styles of button controls
    2022-08-10 16:13:56下载
    积分:1
  • 696518资源总数
  • 105885会员总数
  • 31今日下载