• 大小: 6.47MB
    文件类型: .rar
    金币: 2
    下载: 1 次
    发布日期: 2023-09-25
  • 语言: Java
  • 标签:

资源简介

Java人事管理系统源码+论文+答辩PPT Java人事管理系统源码+论文+答辩PPT Java人事管理系统源码+论文+答辩PPT

资源截图

代码片段和文件信息

package attendance;
//download by http://www.codefans.net
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.swt.widgets.Label;
import org.eclipse.swt.SWT;
import org.eclipse.swt.widgets.Text;
import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.events.SelectionAdapter;
import org.eclipse.swt.events.SelectionEvent;
import org.eclipse.swt.graphics.Image;
import java.sql.*;
import beans.Attend;
import database.DBconnect;
import javax.swing.JOptionPane;
import org.eclipse.swt.widgets.Combo;
import com.swtdesigner.SWTResourceManager;
public class Add {
private Text id;
private Text actual;
private Text note;
Combo year;
Combo month;

/**
 * Launch the application.
 * @param args
 */
public static void main(String[] args) {
try {
Add window = new Add();
window.open();
} catch (Exception e) {
e.printStackTrace();
}
}

/**
 * Open the window.
 */
public void open() {
Display display = Display.getDefault();
final Shell shell = new Shell();
shell.setBackground(SWTResourceManager.getColor(224 255 255));
shell.setSize(507 408);
shell.setText(“\u6DFB\u52A0\u6570\u636E“);
{
Label label = new Label(shell SWT.NONE);
label.setBackground(SWTResourceManager.getColor(224 255 255));
label.setBounds(25 72 72 16);
label.setText(“\u5458\u5DE5\u7F16\u53F7\uFF1A“);
}
{
id = new Text(shell SWT.BORDER);
id.setBackground(SWTResourceManager.getColor(255 255 255));
id.setBounds(118 69 92 22);
}
{
Label label = new Label(shell SWT.NONE);
label.setBackground(SWTResourceManager.getColor(224 255 255));
label.setBounds(25 114 32 16);
label.setText(“\u5E74\uFF1A“);
}
{
Label label = new Label(shell SWT.NONE);
label.setBackground(SWTResourceManager.getColor(224 255 255));
label.setBounds(25 167 32 16);
label.setText(“\u6708\uFF1A“);
}
{
Label label = new Label(shell SWT.NONE);
label.setBackground(SWTResourceManager.getColor(224 255 255));
label.setBounds(25 214 72 16);
label.setText(“\u5B9E\u5230\u5929\u6570\uFF1A“);
}
{
actual = new Text(shell SWT.BORDER);
actual.setBounds(130 214 71 22);
}
{
Label label = new Label(shell SWT.NONE);
label.setBackground(SWTResourceManager.getColor(224 255 255));
label.setBounds(35 266 72 16);
label.setText(“\u5907\u6CE8\uFF1A“);
}
{
note = new Text(shell SWT.BORDER);
note.setBounds(118 263 332 66);
}
{
Button button = new Button(shell SWT.NONE);
button.setImage(new Image(null“images/add.jpg“));
button.addSelectionListener(new SelectionAdapter() {

public void widgetSelected(SelectionEvent e) {

String sid = id.getText();
if (sid.equals(““)) {
JOptionPane.showMessageDialog(null “必须要输入编号“);
}
Operate op = new Operate();

try {
int iid = 

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

----------- ---------  ---------- -----  ----

              9025109                    233


评论

共有 条评论

相关资源