当前位置:首页 » 数据仓库 » 学生数据库管理系统下载
扩展阅读
webinf下怎么引入js 2023-08-31 21:54:13
堡垒机怎么打开web 2023-08-31 21:54:11

学生数据库管理系统下载

发布时间: 2022-09-02 00:51:43

① 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();
}
}
这个是主界面。