⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 form1.frm

📁 是自己编写的学生学籍管理系统.其中添加了查询、插入、删除等功能。
💻 FRM
字号:
VERSION 5.00
Begin VB.Form Form1 
   Caption         =   "工商0102学生数据库第1页"
   ClientHeight    =   6135
   ClientLeft      =   1875
   ClientTop       =   1695
   ClientWidth     =   7110
   LinkTopic       =   "Form1"
   ScaleHeight     =   6135
   ScaleWidth      =   7110
   Begin VB.CommandButton Command2 
      Caption         =   "退出"
      BeginProperty Font 
         Name            =   "System"
         Size            =   12
         Charset         =   134
         Weight          =   700
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Height          =   495
      Left            =   720
      TabIndex        =   3
      Top             =   5280
      Width           =   1335
   End
   Begin VB.CommandButton Command1 
      BackColor       =   &H00FFFFFF&
      Caption         =   "进入"
      BeginProperty Font 
         Name            =   "System"
         Size            =   12
         Charset         =   134
         Weight          =   700
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Height          =   495
      Left            =   720
      TabIndex        =   2
      Top             =   4560
      Width           =   1335
   End
   Begin VB.PictureBox Picture1 
      Height          =   6135
      Left            =   0
      Picture         =   "Form1.frx":0000
      ScaleHeight     =   6075
      ScaleWidth      =   7035
      TabIndex        =   0
      Top             =   0
      Width           =   7095
      Begin VB.Timer Timer1 
         Interval        =   399
         Left            =   1200
         Top             =   1920
      End
      Begin VB.Label Label1 
         BackColor       =   &H80000009&
         Caption         =   "欢迎进入西安邮电学院图书馆管理系统"
         BeginProperty Font 
            Name            =   "华文行楷"
            Size            =   24
            Charset         =   134
            Weight          =   700
            Underline       =   0   'False
            Italic          =   0   'False
            Strikethrough   =   0   'False
         EndProperty
         ForeColor       =   &H00000000&
         Height          =   3975
         Left            =   720
         TabIndex        =   1
         Top             =   240
         Width           =   1695
      End
   End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
Form1.Hide
Form2.Show


End Sub

Private Sub Command2_Click()
End
End Sub

Private Sub Timer1_Timer()
Randomize
Label1.ForeColor = RGB(Rnd * 255, Rnd * 255, Rnd * 225)
End Sub

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -