拧巴人 发表于 2014-5-1 10:26

JAVASE家庭理财系统

First,we use the MyEclipse 6.0.1 and Access—2000 to carry out its             functions;Second,it takes us many weeks especially my partner tomake itwell;Third,it still has many bugs,and we will prefect it as well as we can ;Forth,now I will introduce something of our project anddear Pan             will talk some of the codes and show how the project works
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.*;

class Help extends JFrame implements ActionListener{
      /**
         *
         */
      private static final long serialVersionUID = 1L;
      static JFrame hp = new JFrame("家庭理财系统帮助");
      static JPanel help = new JPanel();
      static JButton bt = new JButton("退出");
      static JLabel lb1 = new JLabel("帮助:");
      static JLabel lb2 = new JLabel("1、 修改密码:单击修改密码,则直接输入新的密码,然后确定就可以了;");
      static JLabel lb3 = new JLabel("2、 修改数据:单击修改数据,然后选择要修改的对象的序号,再按需要修改;");
      static JLabel lb4 = new JLabel("3、 删除数据:单击删除数据,然后选择要删除的对象的序号,直接点击删除;");
      static JLabel lb5 = new JLabel("4、 财务统计:单击统计,可以按照给定的规则处理,可以按照某一时间进行统计;");
      static JLabel lb6 = new JLabel("5、 总结余——显示的是最后的总计,与现款直接对应,简单明了;");
      static JLabel lb7 = new JLabel("6、 程序的初始密码为:123;");
      static JLabel lb8 = new JLabel("7、 单击添加,则可以在该行右边直接按次序输入财务信息;");
      static JLabel lb9 = new JLabel("8、 本程序为潘海强和钟余洋开发,望大家多多提些建议。");
               
                publicHelp(){
                hp.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
                help.setLayout(null);hp.setLayout(null);
                hp.setBounds(270, 180, 520, 300);
                help.setBounds(0, 0, 520, 200);
                hp.setResizable(false);
                bt.setBounds(150, 220, 200, 40);      hp.add(bt);      bt.addActionListener(this);
                lb1.setBounds(15, 20, 600, 20);help.add(lb1);      
                lb2.setBounds(15, 40, 600, 20);help.add(lb2);
                lb3.setBounds(15, 60, 600, 20);help.add(lb3);
                lb4.setBounds(15, 80, 600, 20);help.add(lb4);
                lb5.setBounds(15, 100, 600, 20);help.add(lb5);
                lb6.setBounds(15, 120, 600, 20);help.add(lb6);
                lb7.setBounds(15, 140, 600, 20);help.add(lb7);
                lb8.setBounds(15, 160, 600, 20);help.add(lb8);
                lb9.setBounds(15, 180, 600, 20);help.add(lb9);
                hp.add(help);
                hp.setVisible(true);
                help.setVisible(true);
               
      }
               
                public void actionPerformed(ActionEvent   e){
                        hp.setVisible(false);
                }
      public static void main(String[] args) {
                //new Help();
      }

}
项目源码下载地址:点击下载




小新小 发表于 2015-5-9 14:41

感谢楼主分享,:hug:

java宫城大师 发表于 2016-3-17 21:39

看看 学习下 谢谢分享

woniu 发表于 2016-4-12 11:54

这个项目太棒勒!下下来学习下!

dogwei 发表于 2017-1-30 21:24

感谢楼主的分享!谢谢

琛琛陈 发表于 2017-6-26 16:18

谢谢   大神   么么哒

wudizxt 发表于 2017-8-16 10:13

不错不错,好好学习一下
页: [1]
查看完整版本: JAVASE家庭理财系统