登录
首页 » 其他 » Office XP风格界面的VB超市进销存系统源码

Office XP风格界面的VB超市进销存系统源码

于 2023-05-24 发布 文件大小:675.05 kB
0 187
下载积分: 2 下载次数: 1

代码说明:

再分享一个VB超市进销存管理系统源码,系统主代码在“后台管理”文件夹中,包括了软件开发过程中,从设计到实现的所有文档,资源以及完整源代码。默认管理员帐号:admin 密码:admin。这相进销存系统主要功能模块:   商品管理、进货管理、厂商/供货商管理、会员管理、付款机系统、商品搜索,可直接输入条码搜索商品,可以设定某商品是否允许正常销售等功能。   本超市进销存系统实现了Office XP风格界面,虽然许多地方都是模拟的,但往往最简单的方法就是最好的,反正个人感觉没有比这个更好的XP界面风格了。

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

发表评论

0 个回复

  • 利用矩形阵列传感器实现音乐算法
    Implementation of MUSIC Algorithm using Rectangular array of sensors
    2022-03-11 00:22:54下载
    积分:1
  • 一个VB文件夹控件源码实例
    一个VB文件夹控件源码实例,这个文件夹列表控件支持自定义、鼠标热跟踪等功能,应用本控件做出的界面窗口如截图所示。
    2022-01-28 15:34:19下载
    积分:1
  • 操作系统课程设计 题目和目的: 通过模拟文件系统的实现,深入理解操作系统中文件系统的理论知识。(完整报告,包括源码、流程、分析、心得和可执行程序。心血啊!)...
    操作系统课程设计 题目和目的: 通过模拟文件系统的实现,深入理解操作系统中文件系统的理论知识。(完整报告,包括源码、流程、分析、心得和可执行程序。心血啊!) - The operating system curriculum designs the topic and the goal: Through the simulation filing system realization, thoroughly understands in the operating system the filing system theory knowledge. (The integrity reported, including the source code, the flow, the analysis, the attainment and may the executive routine. Painstaking care! )
    2022-02-01 16:48:35下载
    积分:1
  • Java中的Canvas绘图源码实例
    Java中的Canvas绘图源码实例,主要是画线条、弧线、圆角矩形、三角形、文字、圆形等简单的几何图形,主要是通过创建DrawingCanvas对象canvas,为canvas设置命令监听者,实现接口CommandListener的方法,把缓冲区图像的内容绘制到画布上,画图部分代码:   int w = getWidth(); // 画布的宽度   int h = getHeight(); // 画布的高度   Image buffer = Image.createImage(w, h); // 用于绘图的缓冲图像   Graphics gc = buffer.getGraphics(); // 获取缓冲图像的图形环境   // 清除画布   public void clearScreen() {    gc.setColor(255,255,255); // 设置绘图颜色为白色    gc.fillRect(0,0,w,h); // 把缓冲图像填充为白色    gc.setColor(255,0,0); // 设置绘图颜色为红色   }   // 绘制直线   public void drawLine() {    setTitle("直线"); // 设置画布的标题    clearScreen(); // 清除画布    gc.drawLine(10,10,w-20,h-20); // 绘制黑色直线    gc.setColor(0,0,255); // 设置绘图颜色为蓝色    gc.drawLine(10,h/2,w-10,h/2); // 绘制蓝色直线   }   // 绘制弧   public void drawArc() {    setTitle("弧线和填充弧");    clearScreen();    gc.drawArc(5,5,w/2-20,h/2-20,60,216); // 绘制弧线    gc.drawArc(5,h/2-10,w/2-20,h/2-20,0,360); // 绘制圆    gc.setColor(0,0,255);    gc.fillArc(w/2,5,w/2-20,h/2-20,60,216); // 绘制填充弧线    gc
    2023-04-11 05:50:03下载
    积分:1
  • I2C(英特尔
    I2C(Intel-Integrated Circuit bus)为内部IC控制的双向串行总线,用于连接微控制器及其外围设备的互连。该程序用Verilog HDL语言来实现FPGA模拟I2C协议作为主端对I2C从设备进行读/写操作。-I2C (Intel-Integrated Circuit bus) control IC for internal bi-directional serial bus for connecting micro-controller and its peripheral equipment interconnection. The program with the Verilog HDL language to achieve the FPGA simulation of I2C protocol as the main terminal from the device to the I2C read/write operations.
    2022-03-17 09:28:17下载
    积分:1
  • Ingeo modules that can be used to import in environment
    Ingeo modules that can be used to import in environment
    2022-01-27 20:54:46下载
    积分:1
  • 实现多天线MIMO(准静态平坦衰落)通信系统仿真
    实现多天线MIMO(准静态平坦衰落)通信系统仿真-implement the simulation of MIMO communication system
    2023-05-04 23:40:03下载
    积分:1
  • 学生毕业设计管理系统
    这是一个C++实现的学生毕业设计管理系统,里面都是经过CodeBlock调试过的,绝对正确!
    2022-01-22 14:50:09下载
    积分:1
  • 建立arm-linux的gnu开发工具链的详细步骤
    建立arm-linux的gnu开发工具链的详细步骤-building arm- linux the gnu development tools chain and the detailed steps
    2023-06-10 22:05:08下载
    积分:1
  • Enter the Matrix MS
    Enter the Matrix MS-DOS screensaver. Sample of using bios functions (by int 10h) for text data output (monitor in the text mode) and keyboard input. Requires: Borland C++ 3.1 for DOS.- Enter the Matrix MS-DOS screensaver. Sample of using bios functions (by int 10h) for text data output (monitor in the text mode) and keyboard input. Requires: Borland C++ 3.1 for DOS.
    2022-01-23 11:23:36下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载