Welcome![Sign In][Sign Up]
Location:
Search - swing e

Search list

[JSP/JavaMetalworks

Description: Metalworks is a simple Swing-based simulated e-mail application. It shows off several features of Swing, including JInternalFrame, JTabbedPane, JFileChooser, JEditorPane, and JRadioButtonMenuItem. Metalworks is optimized to work with the Java look and feel (codenamed \"Metal\") and shows use of several features, such as themes, that are specific to the Java look and feel. -Metalworks is a simple Swing-based Simula ted e-mail application. It shows off several fe atures of Swing, including JInternalFrame. JTabbedPane, JFileChooser, JEditorPane. and JRadioButtonMenuItem. Metalworks is opti mized to work with the Java look and feel (codena med "Metal") and shows use of several features, themes such as, that are specific to the Java look and feel.
Platform: | Size: 43561 | Author: 王春永 | Hits:

[JSP/JavaOLCswing

Description: 一个基于swing组件的java程序, 包含 开发全过程,包括需求说明,E-R图等等,源文件压缩在onlinecourse.rar里面
Platform: | Size: 543711 | Author: Fang | Hits:

[SDK图书管理系统

Description: import java.awt.*; import javax.swing.*; import java.awt.event.*; public class BookManageMain{ public void main(String[] args){ Frame f = new Frame("图书管理系统");//super("图书管理系统"); MenuBar Menub = new MenuBar(); //系统管理子菜单 Menu jMenuSystem = new Menu("系统管理"); MenuItem jMenuItemLogin = new MenuItem("用户登录"); Menu jMenuUserManage = new Menu("用户管理"); MenuItem jMenuFileExit = new MenuItem("退出"); MenuItem jMenuItemuseradd = new MenuItem("添加用户"); MenuItem jMenuItemuserupdate = new MenuItem("修改用户"); MenuItem jMenuItemuserdelete = new MenuItem("删除用户"); jMenuItemLogin.addActionListener(this); jMenuFileExit.addActionListener(this); jMenuItemuseradd.addActionListener(this); jMenuItemuserupdate.addActionListener(this); jMenuItemuserdelete.addActionListener(this); Menub.add(jMenuSystem); //书籍管理子菜单 Menu jMenuBookManage = new Menu("书籍管理"); MenuItem jMenuItemBookAdd = new MenuItem("添加书籍信息"); MenuItem jMenuItemBookUpdate = new MenuItem("修改书籍信息"); MenuItem jMenuItemBookDelete = new MenuItem("删除书籍信息"); jMenuItemBookAdd.addActionListener(this); jMenuItemBookUpdate.addActionListener(this); jMenuItemBookDelete.addActionListener(this); Menub.add(jMenuBookManage); //借书管理子菜单 Menu jMenuBorrowBook = new Menu("借书管理"); MenuItem jMenuItemBookBorrow = new MenuItem("书籍出借"); MenuItem jMenuItemBookBorrowUpdate = new MenuItem("出借信息修改"); jMenuItemBookBorrow.addActionListener(this); jMenuItemBookBorrowUpdate.addActionListener(this); Menub.add(jMenuBorrowBook); //还书管理子菜单 Menu jMenuReturnBook = new Menu("还书管理"); MenuItem jMenuItemBookReturn = new MenuItem("书籍还入"); MenuItem jMenuItemBookReturnUpdate = new MenuItem("书籍还入信息修改"); jMenuItemBookReturn.addActionListener(this); jMenuItemBookReturnUpdate.addActionListener(this); Menub.add(jMenuReturnBook); //信息一览子菜单 Menu jMenuAllInfo = new Menu("信息一览"); MenuItem jMenuItemAllBook = new MenuItem("书籍列表"); MenuItem jMenuItemAllRead = new MenuItem("借阅者列表"); MenuItem jMenuItemAllInfo = new MenuItem("借阅情况列表"); jMenuItemAllBook.addActionListener(this); jMenuItemAllRead.addActionListener(this); jMenuItemAllInfo.addActionListener(this); Menub.add(jMenuAllInfo); f.setMenuBar(Menub); Menub.add(jMenuSystem); Menub.add(jMenuBookManage); //jMenuSystem.addSeparator(); Menub.add(jMenuBorrowBook); Menub.add(jMenuReturnBook); Menub.add(jMenuAllInfo); jMenuSystem.add(jMenuItemLogin); jMenuSystem.addSeparator();//分割线 jMenuSystem.add(jMenuUserManage); jMenuSystem.addSeparator(); jMenuSystem.add(jMenuFileExit); jMenuUserManage.add(jMenuItemuseradd); jMenuUserManage.addSeparator(); jMenuUserManage.add(jMenuItemuserupdate); jMenuUserManage.addSeparator(); jMenuUserManage.add(jMenuItemuserdelete); jMenuBookManage.add(jMenuItemBookAdd); jMenuBookManage.addSeparator(); jMenuBookManage.add(jMenuItemBookUpdate); jMenuBookManage.addSeparator(); jMenuBookManage.add(jMenuItemBookDelete); jMenuBorrowBook.add(jMenuBookBorrow); jMenuBorrowBook.addSeparator(); jMenuBorrowBook.add(jMenuBookBorrowUpdate); jMenuReturnBook.add(jMenuItemBookReturn); jMenuReturnBook.addSeparator(); jMenuReturnBook.add(jMenuItemBookReturnUpdate); jMenuAllInfo.add(jMenuItemAllBook); jMenuAllInfo.addSeparator(); jMenuAllInfo.add(jMenuItemAllRead); jMenuAllInfo.addSeparator(); jMenuAllInfo.add(jMenuItemAllInfo); f.setSize(800,600); //f.setBounds(400,400,600,800); f.setVisible(true); f.show(); } //设置初始状态 /* jMenuUserManage.setEnabled(false); jMenuBookManage.setEnabled(false); jMenuBorrowBook.setEnabled(false); jMenuReturnBook.setEnabled(false); jMenuAllInfo.setEnabled(false); */ } /* public void this_windowOpened(WindowEvent e){ setEnable("else"); jMenuItemLogin dlg = new jMenuItemLogin(this); Dimension dlgSize = dlg.getPreferredSize(); Dimension frmSize=getSize(); Point loc = getLocation(); dlg.setLocation((frmSize.width-dlgSize.width)/2+loc.x,(frmSize.height-dlgSize.height)/2+loc.y); dlg.pack(); dlg.show(); }*/ public void actionPerformed(ActionEvent e){ if(e.getActionCommand()= "用户登录") {jMenuItemLogin dlg = new jMenuItemLogin(this); Dimension dlgSize = dlg.getPreferredSize(); Dimension frmSize = getSize(); Point loc = getLocation(); dlg.setLocation((frmSize.width-dlgSize.width)/2+loc.x,(frmSize.height-dlgSize.height)/2+loc.y); dlg.pack(); dlg.show(); } else if(e.getActionCommand()="添加用户") {jMenuItemuseradd dlg= new jMenuItemuseradd(); Dimension dlgSize = dlg.getPreferredSize(); Dimension frmSize = getSize(); Point loc = getLocation(); dlg.setLocation((frmSize.width-dlgSize.width)/2+loc.x,(frmSize.height-dlgSize.height)/2+loc.y); dlg.pack(); dlg.show(); } else if(e.getActionCommand="修改用户") {jMenuItemuserupdate dlg = new jMenuItemuserupdate(); Dimension dlgSize = dlg.getPreferredSize(); Dimension frmSize = getSize(); Point loc = getLocation(); dlg.setLocation((frmSize.width-dlgSize.width)/2+loc.x,(frmSize.height-dlgSize.height)/2+loc.y); dlg.pack(); dlg.show(); } else if(e.getActionCommand="删除用户") { jMenuItemuserdelete dlg = new jMenuItemuserdelete(); Dimension dlgSize = dlg.getPreferredSize(); Dimension frmSize = getSize(); Point loc = getLocation(); dlg.setLocation((frmSize.width-dlgSize.width)/2+loc.x,(frmSize.height-dlgSize.height)/2+loc.y); dlg.pack(); dlg.show();} else if(e.getActionCommand="添加书籍信息") { jMenuItemBookAdd dlg = new jMenuItemBookAdd(); Dimension dlgSize = dlg.getPreferredSize(); Dimension frmSize = getSize(); Point loc = getLocation(); dlg.setLocation((frmSize.width-dlgSize.width)/2+loc.x,(frmSize.height-dlgSize.height)/2+loc.y); dlg.pack(); dlg.show(); } else if(e.getActionCommand="修改书籍信息") { jMenuItemBookUpdate dlg=new jMenuItemBookUpdate(); Dimension dlgSize = dlg.getPreferredSize(); Dimension frmSize = getSize(); Point loc = getLocation(); dlg.setLocation((frmSize.width-dlgSize.width)/2+loc.x,(frmSize.height-dlgSize.height)/2+loc.y); dlg.pack(); dlg.show(); } else if(e.getActionCommand="删除书籍信息") {jMenuItemBookDelete dlg= new jMenuItemBookDelete(); Dimension dlgSize = dlg.getPreferredSize(); Dimension frmSize = getSize(); Point loc = getLocation(); dlg.setLocation((frmSize.width-dlgSize.width)/2+loc.x,(frmSize.height-dlgSize.height)/2+loc.y); dlg.pack(); dlg.show(); } else if(e.getActionCommand="书籍出借") { jMenuItemuBookBorrow dlg = new jMenuItemuBookBorrow(); Dimension dlgSize = dlg.getPreferredSize(); Dimension frmSize = getSize(); Point loc = getLocation(); dlg.setLocation((frmSize.width-dlgSize.width)/2+loc.x,(frmSize.height-dlgSize.height)/2+loc.y); dlg.pack(); dlg.show(); } else if(e.getActionCommand="出借信息修改") {jMenuItemuBookBorrowUpdate dlg= new jMenuItemuBookBorrowUpdate(); Dimension dlgSize = dlg.getPreferredSize(); Dimension frmSize = getSize(); Point loc = getLocation(); dlg.setLocation((frmSize.width-dlgSize.width)/2+loc.x,(frmSize.height-dlgSize.height)/2+loc.y); dlg.pack(); dlg.show(); } else if(e.getActionCommand="书籍还入") { jMenuItemBookReturn dlg=new jMenuItemBookReturn(); Dimension dlgSize = dlg.getPreferredSize(); Dimension frmSize = getSize(); Point loc = getLocation(); dlg.setLocation((frmSize.width-dlgSize.width)/2+loc.x,(frmSize.height-dlgSize.height)/2+loc.y); dlg.pack(); dlg.show(); } else if(e.getActionCommond="书籍还入信息修改") { jMenuItemBookReturnUpdate dlg= new jMenuItemBookReturnUpdate(); Dimension dlgSize = dlg.getPreferredSize(); Dimension frmSize = getSize(); Point loc = getLocation(); dlg.setLocation((frmSize.width-dlgSize.width)/2+loc.x,(frmSize.height-dlgSize.height)/2+loc.y); dlg.pack(); dlg.show(); } else if(e.getActionCommond="书籍列表") { jMenuItemAllBook dlg=new jMenuItemAllBook(); Dimension dlgSize = dlg.getPreferredSize(); Dimension frmSize = getSize(); Point loc = getLocation(); dlg.setLocation((frmSize.width-dlgSize.width)/2+loc.x,(frmSize.height-dlgSize.height)/2+loc.y); dlg.pack(); dlg.show(); } else if(e.getActionCommond="借阅者列表") { jMenuItemAllRead dlg = new jMenuItemAllRead(); Dimension dlgSize = dlg.getPreferredSize(); Dimension frmSize = getSize(); Point loc = getLocation(); dlg.setLocation((frmSize.width-dlgSize.width)/2+loc.x,(frmSize.height-dlgSize.height)/2+loc.y); dlg.pack(); dlg.show(); } else if(e.getActionCommand="借阅情况列表") { jMenuItemAllInfo dlg = new jMenuItemAllInfo(); Dimension dlgSize = dlg.getPreferredSize(); Dimension frmSize = getSize(); Point loc = getLocation(); dlg.setLocation((frmSize.width-dlgSize.width)/2+loc.x,(frmSize.height-dlgSize.height)/2+loc.y); dlg.pack(); dlg.show(); } else if(e.getActionCommand="借阅情况列表") { AllInfo dlg=new allinfo(); Dimension dlgSize = dlg.getPreferredSize(); Dimension frmSize = getSize(); Point loc = getLocation(); dlg.setLocation((frmSize.width-dlgSize.width)/2+loc.x,(frmSize.height-dlgSize.height)/2+loc.y); dlg.pack(); dlg.show(); } else if(e.getActionCommand="退出") { this.dispose(); System.exit(0); } 图书管理系统
Platform: | Size: 560040 | Author: pangshu1221 | Hits:

[JSP/JavaMetalworks

Description: Metalworks is a simple Swing-based simulated e-mail application. It shows off several features of Swing, including JInternalFrame, JTabbedPane, JFileChooser, JEditorPane, and JRadioButtonMenuItem. Metalworks is optimized to work with the Java look and feel (codenamed "Metal") and shows use of several features, such as themes, that are specific to the Java look and feel. -Metalworks is a simple Swing-based Simula ted e-mail application. It shows off several fe atures of Swing, including JInternalFrame. JTabbedPane, JFileChooser, JEditorPane. and JRadioButtonMenuItem. Metalworks is opti mized to work with the Java look and feel (codena med "Metal") and shows use of several features, themes such as, that are specific to the Java look and feel.
Platform: | Size: 43008 | Author: 王春永 | Hits:

[JSP/JavaOLCswing

Description: 一个基于swing组件的java程序, 包含 开发全过程,包括需求说明,E-R图等等,源文件压缩在onlinecourse.rar里面-A swing-based java program components, including the development of the entire process, including the requirement specification, ER diagram, etc., the source file in which onlinecourse.rar
Platform: | Size: 543744 | Author: Fang | Hits:

[matlabMATLAB7.0HunHeBianCheng

Description: MATLAB7.0混合编程,pdg格式电子书,从学校超星图书馆荡下来的,很不错,需要安装超星4.0阅览器!-MATLAB7.0 mixed programming, pdg format e-books, from school libraries Chaoxing swing down, it is good, need to install Chaoxing 4.0 browser!
Platform: | Size: 6077440 | Author: XiaoMa | Hits:

[Windows Develop31221527719

Description: mport javax.swing.* import java.awt.event.* public class Block extends JButton implements ActionListener { ImageIcon 翻开时的图标=null,关闭时的图标=null public Block() { addActionListener(this) } public ImageIcon 获取翻开时的图标() { return 翻开时的图标 } public ImageIcon 获取关闭时的图标() { return 关闭时的图标 } public void 设置翻开时的图标(ImageIcon icon) { 翻开时的图标=icon } public void 设置关闭时的图标(ImageIcon icon) { 关闭时的图标=icon } public void 设置图标(ImageIcon icon) { setIcon(icon) } public void actionPerformed(ActionEvent e) { this.setIcon(翻开时的图标) } }-mport javax.swing .* import java.awt.event .* public class Block extends JButton implements ActionListener (ImageIcon icon when opened = null, the closure of the icon = null public Block () (addActionListener (this)) public ImageIcon icon at the time of access to open () (return icon when opened) public ImageIcon access to the closure of the icon () (return shutdown icon) public void opened when the icon settings (ImageIcon icon) (look at the icon = icon) public void shutdown icon settings (ImageIcon icon) (shutdown icon = icon) public void settings icon (ImageIcon icon) (setIcon (icon)) public void actionPerformed ( ActionEvent e) (this.setIcon (open at the time of the icon)))
Platform: | Size: 209920 | Author: 望信赖 | Hits:

[JSPJava2tuxingshejijuan2swing

Description: Java 2 图形设计卷2-Swing(电子书) 网上书城评价很高,值得大家参考,由于上传用不了中文名字,所以用了拼音,还请大家谅解!-Graphic Design Java 2 Volume 2-Swing (e) a high evaluation of online bookstores, it is worth your consideration, as few Chinese names for upload, so spent a phonetic, but also understanding please!
Platform: | Size: 596992 | Author: 王涛 | Hits:

[JSP/JavaOReilly.Swing.Hacks.Jun.2005

Description: e-book OReilly Swing Hack
Platform: | Size: 4353024 | Author: wongnaret khantuwan | Hits:

[JSPswing

Description: java精通swing的编程方面的一个很经典的电子书-java programming master swing in a classic e-books
Platform: | Size: 149504 | Author: 陈巍巍 | Hits:

[JSP/JavaEmailGiant

Description: 一个用java swing开发的邮件管理系统,可以收发邮件,也可以管理邮件信息-Developed using java swing an e-mail management system that can send and receive e-mail, but also to manage e-mail messages
Platform: | Size: 515072 | Author: 高友健 | Hits:

[ERP-EIP-OA-Portalerp

Description: java 简单的erp 用java swing awt 界面 可用于个人做简单的练习之用-java easy erp for person do a excese
Platform: | Size: 889856 | Author: hata | Hits:

[JSP/JavaJava_application_source_code

Description: 01 进销存管理系统(Swing+SQLServer 2000实现) 02 企业内部通信系统(Swing+JavaDB实现) 03 企业人事管理系统(Swing+Hibernate+Oracle实现) 04 酒店管理系统(Swing+SQL Server2005实现) 05 图书馆管理系统(Swing+SQL Server 2000实现) 06 企业快信(Swing+JavaDB实现) 07 欣想电子商城(Spring+Hibernate+SQL Server实现) 08 企业门户网站(JSP+JavaBean+SQL Server 2000实现) 09 BBS系统(Struts+MySQL实现) 10 手机网络游戏(J2ME+Servlet实现) -01 Invoicing Management System (Swing+ SQLServer 2000 to achieve) 02 internal communication systems (Swing+ JavaDB realization) 03 Enterprise Personnel Management System (Swing+ Hibernate+ Oracle implementation) 04 Hotel Management System (Swing+ SQL Server2005 to achieve) 05 book Center Management System (Swing+ SQL Server 2000 implementation) 06 companies express letter (Swing+ JavaDB realization) 07-yan would like to e-Mall (Spring+ Hibernate+ SQL Server to achieve) 08 Enterprise Portal (JSP+ JavaBean+ SQL Server 2000 implementation) 09 BBS system (Struts+ MySQL implementation) 10 mobile phone games (J2ME+ Servlet implementation)
Platform: | Size: 13422592 | Author: th | Hits:

[OtherFHP3350_IcpdfCom_693311

Description: 在FHP3350和FHP3450是低成本,高性能, 电压反馈为视频应用而设计的放大器。 这些三和四放大器仅消耗供应三点六毫安 当前每通道可以驱动双(75?)视频功能 负载,同时提供0.1dB的增益平坦度至30MHz。 消费类视频应用也将受益于低 差分增益0.07%和0.03?差分相位误差。那个 FHP3350提供三种,可以成为一个高投入产出 阻抗禁用状态,以便复用或视频 功耗降到最低。 这些放大器的设计工作从5V(± 2.5V的),以 12V的(± 6V的)用品。的产出范围内摆动,或为1.3V 电源电压适应单一5V电源,视频信号。 FHP3450的FHP3350和设计上的互补性 双极工艺制造。他们提供的全功率带宽为210MHz 和1,100 V /μs的压摆率为± 5V电源电压。那个 高性能,低功率和出色的 视频性能使这些放大器以及在适合使用 许多数字消费类视频设备以及许多 通用高速应用-The FHP3350 and FHP3450 are low cost, high performance, voltage feedback amplifiers designed for video applications. These triple and quad amplifiers consume only 3.6mA of supply current per channel and are capable of driving dual (75?) video loads while providing 0.1dB of gain flatness to 30MHz. Consumer video applications will also benefit from their low 0.07 differential gain and 0.03? differential phase errors. The FHP3350 offers three outputs that can be put into a high impedance disable state to allow for video multiplexing or minimize power consumption. These amplifiers are designed to operate from 5V (±2.5V) to 12V (±6V) supplies. The outputs swing to within 1.3V of either supply rail to accommodate video signals on a single 5V supply. The FHP3350 and FHP3450 are designed on a complementary bipolar process. They provide 210MHz of full power bandwidth and 1,100V/μs of slew rate at a supply voltage of ±5V. The combination of high performance, low power, and e
Platform: | Size: 743424 | Author: wangyuli | Hits:

[JSP/Javadiianzishu

Description: Java swing db数据库实现的电子书阅读模块-Java swing db database module to achieve the e-book reading
Platform: | Size: 59392 | Author: 411912wanggang | Hits:

[SCMExercise-VI

Description: The applications in Chapters 210 display text at the command window and obtain input from the command window. Most applications you use on a daily basis use windows or dialog boxes (also called dialogs) to interact with the user. For example, e-mail programs allow you to type and read messages in a window provided by the e-mail program. Typically, dialog boxes are windows in which programs display important messages to the user or obtain information from the user. Java s JOptionPane class (package javax.swing) provides prepackaged dialog boxes for both input and output. These dialogs are displayed by invoking static JOptionPane methods. Figure 11.2 presents a simple addition application that uses two input dialogs to obtain integers from the user and a message dialog to display the sum of the integers the user enters.
Platform: | Size: 9216 | Author: huangkai | Hits:

[JSP/JavaSwingJavaMail

Description: 基于java的Swing开发的JavaMail邮件收发系统.实现了邮件的发送和接收,能发送附件-The Swing-based java development JavaMail send and receive e-mail system. Implements send and receive mail, can send attachments
Platform: | Size: 425984 | Author: zhaowenhao | Hits:

[JSP/JavaJAVAdesginmode

Description: 本电子书籍对Java中的设计模式进行了全面的描述,包括对AWT,SWING,MVC and UI等。-E-books on Java design patterns full description, including the AWT, SWING, MVC and UI and so on.
Platform: | Size: 136192 | Author: jzx | Hits:

[WEB MailPowerMail

Description: JAVA开源邮件收发程序,支持联系人维护,抄送、密送,实现发送带附件邮件,基于swing实现。-JAVA open-source e-mail sending and receiving procedures, support contact maintenance, Cc, Bcc, achieve send an attachment in e-mail, based on swing to achieve.
Platform: | Size: 11968512 | Author: 刘鑫 | Hits:

[JSPO_Reilly-Java_Swing

Description: O Reilly - Java Swing (e-book)
Platform: | Size: 6719488 | Author: sandeep | Hits:
« 12 »

CodeBus www.codebus.net