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

📄 信息查询.frm

📁 初学vb,做的第一个系统.一个星期内看vb并做完这个系统的.
💻 FRM
字号:
VERSION 5.00
Begin VB.Form search 
   BorderStyle     =   1  'Fixed Single
   Caption         =   "信息查询"
   ClientHeight    =   3090
   ClientLeft      =   5445
   ClientTop       =   4095
   ClientWidth     =   4680
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   ScaleHeight     =   3090
   ScaleWidth      =   4680
   Begin VB.CommandButton Command3 
      Caption         =   "成绩查询"
      Height          =   495
      Left            =   1440
      TabIndex        =   2
      Top             =   2040
      Width           =   1575
   End
   Begin VB.CommandButton Command2 
      Caption         =   "课程查询"
      Height          =   495
      Left            =   1440
      TabIndex        =   1
      Top             =   1260
      Width           =   1575
   End
   Begin VB.CommandButton Command1 
      Caption         =   "学生信息查询"
      Height          =   495
      Left            =   1440
      TabIndex        =   0
      Top             =   480
      Width           =   1575
   End
End
Attribute VB_Name = "search"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False

Private Sub Command1_Click()
    Unload Me
    search_student.show
End Sub

Private Sub Command2_Click()
    Unload Me
    search_subject.show
End Sub

Private Sub Command3_Click()
    Unload Me
    search_grade.show
End Sub

Private Sub Command4_Click()
    Unload Me
    main.show
End Sub

Private Sub Command5_Click()
    End
End Sub

⌨️ 快捷键说明

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