① ACCESS資料庫做學生系統那有下載
VERSION 5.00 Object = "{CFA7AFF4-3242-4269-9172-7389D695AE01}#1.0#0"; "StoneXP.ocx" Object = "{D959C709-8613-11D1-9840-002078110E7D}#1.0#0"; "as97Popup.ocx" Object = "{DAAC6951-59A4-4C08-9D6E-FE3919B64861}#1.0#0"; "FlexCell.ocx" Begin VB.Form form1 BackColor = &H00FFC0C0& BorderStyle = 1 'Fixed Single Caption = "學生學籍管理系統" ClientHeight = 8880 ClientLeft = 45 ClientTop = 315 ClientWidth = 12000 BeginProperty Font Name = "宋體" Size = 10.5 Charset = 134 Weight = 400 Underline = 0 'False Italic = 0 'False Strikethrough = 0 'False EndProperty Icon = "Form1.frx":0000 LinkTopic = "Form1" MaxButton = 0 'False Picture = "Form1.frx":F84A ScaleHeight = 8880 ScaleWidth = 12000 StartUpPosition = 1 '所有者中心 Begin VB.Frame Fre1 BackColor = &H00C0C0FF& BorderStyle = 0 'None Height = 6165 Left = 150 TabIndex = 5 Top = 2480 Width = 1575 Begin VB.Frame Fre2 BackColor = &H00808080& BorderStyle = 0 'None Height = 375 Index = 0 Left = 0 TabIndex = 10 Top = 1920 Width = 1575 Begin as97Popup.asPopup asPopup1 Height = 855 Left = 240 ToolTipText = "添加銷售記錄" Top = 240 Width = 1095 _ExtentX = 1931 _ExtentY = 1508 CustomPicture = "Form1.frx":2F7CC Caption = "所有學生" BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851} Name = "宋體" Size = 9 Charset = 134 Weight = 400 Underline = 0 'False Italic = 0 'False Strikethrough = 0 'False EndProperty ForeColor = 12582912 BevelWidth = 0 Layout = 3 MouseOverColor = 16777215 ScaleWidth = 73 ScaleMode = 0 ScaleHeight = 57 BackStyle = 0 Object.ToolTipText = "添加銷售記錄" End Begin as97Popup.asPopup asPopup2 Height = 855 Left = 240 ToolTipText = "查看銷售記錄" Top = 1320 Width = 1095 _ExtentX = 1931 _ExtentY = 1508 CustomPicture = "Form1.frx":34331 MouseOverPicture= "Form1.frx":3907E Caption = "增加學生" BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851} Name = "宋體" Size = 9 Charset = 134 Weight = 400 Underline = 0 'False Italic = 0 'False Strikethrough = 0 'False EndProperty ForeColor = 12582912 access
② 請問哪裡可以下載學生信息管理系統(用delphi7.0做平台,包含原代碼和資料庫)
www.csdn.net
③ 怎麼下載Microsoft Access 資料庫軟體
可以通過以下兩種途徑獲取:
方法一:
1、登陸微軟office下載官網http://www.microsoft.com/zh-cn/download/office.aspx?q=office;
2、選擇需要下載的office版本、平台,選擇完成點擊下載即可。
方法二:
1、網路搜索office
下載或者Access
下載;
2、在網頁找找到需要下載的軟體和版本,點擊下載即可。
Microsoft
Office
Access是由微軟發布的關系資料庫管理系統。它結合了
MicrosoftJet
Database
Engine
和
圖形用戶界面兩項特點,是
Microsoft
Office
的系統程序之一。
④ 跪求一個access資料庫的學生信息管理系統....後綴mdb的!得啥也有啊表,查詢,窗體,頁等我交作業用的
現在一般都用accdb格式的Access,mdb的很難找了,給你一份我十年前下載的吧!
⑤ 下載的學生管理系統,裡面有一個文件說 資料庫文件在當前目錄下, student-mdf
你先配置VS里的資料庫和服務,然後再把這個系統載入進去就行了
你下載的那個系統看看用的什麼資料庫
⑥ 網上下載一個【學生成績管理系統-資料庫課程設計】, 但是我不知道從何開始操作它,-_-!
你這又不是web項目,會用到tomcat?你用右鍵點項目-》run as-》java application來運行試試
⑦ 資料庫課程設計--學生學籍管理系統
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
class MyPanel extends JPanel{
Image img=Toolkit.getDefaultToolkit().getImage("a.jpg");
public void paint(Graphics g){
g.drawImage(img,0,0,this);
}
}
public class MainForm extends JFrame implements ActionListener{
JMenu mSystem=new JMenu("系統");
JMenuItem mExit=new JMenuItem("退出");
JMenu mOperate=new JMenu("數據操作");
JMenuItem mAdd=new JMenuItem("添加");
JMenuItem mDel=new JMenuItem("刪除");
JMenuItem mModify=new JMenuItem("修改");
JMenuItem mBrowse=new JMenuItem("瀏覽");
JMenu mQuery=new JMenu("查詢");
JMenuItem mNumber=new JMenuItem("按學號查詢");
JMenuItem mScore=new JMenuItem("按成績查詢");
JMenu mHelp=new JMenu("幫助");
JMenuItem mAbout=new JMenuItem("關於");
JMenuBar mBar=new JMenuBar();
MainForm(){
super("學生成績管理系統");
setSize(700,630);
setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
mSystem.add(mExit);
mOperate.add(mAdd);
mOperate.add(mDel);
mOperate.add(mModify);
mOperate.add(mBrowse);
mQuery.add(mNumber);
mQuery.add(mScore);
mHelp.add(mAbout);
mBar.add(mSystem);
mBar.add(mOperate);
mBar.add(mQuery);
mBar.add(mHelp);
setJMenuBar(mBar);
mExit.addActionListener(this);
mAdd.addActionListener(this);
mDel.addActionListener(this);
mModify.addActionListener(this);
mBrowse.addActionListener(this);
mNumber.addActionListener(this);
mScore.addActionListener(this);
mAbout.addActionListener(this);
setContentPane(new MyPanel());
setVisible(true);
}
public void actionPerformed(ActionEvent ae){
if(ae.getSource()==mExit)
System.exit(0);
else if(ae.getSource()==mAbout)
JOptionPane.showMessageDialog(this,"學生管理系統 V1.0\n\n安徽師范大學數學計算機科學學院\n\n2010年11月","關於",JOptionPane.INFORMATION_MESSAGE);
else if(ae.getSource()==mAdd)
new AddForm().setVisible(true);
else if(ae.getSource()==mDel)
new DeleteForm().setVisible(true);
else if(ae.getSource()==mModify)
new ModifyForm().setVisible(true);
else if(ae.getSource()==mBrowse)
new BrowseForm().setVisible(true);
else if(ae.getSource()==mNumber)
new NumberQueryForm().setVisible(true);
else if(ae.getSource()==mScore)
new ScoreQueryForm().setVisible(true);
}
public static void main(String[] args) {
new MainForm();
}
}
這個是主界面。