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

📄 introfrm.frm

📁 很好的学习资料
💻 FRM
字号:
VERSION 5.00
Begin VB.Form introfrm 
   BorderStyle     =   1  'Fixed Single
   Caption         =   "欢迎使用选课系统"
   ClientHeight    =   3195
   ClientLeft      =   3825
   ClientTop       =   3555
   ClientWidth     =   4680
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   3195
   ScaleWidth      =   4680
   Begin VB.CommandButton aboutcmd 
      Caption         =   "关于"
      Height          =   375
      Index           =   1
      Left            =   2520
      TabIndex        =   1
      Top             =   2640
      Width           =   1095
   End
   Begin VB.CommandButton logcmd 
      Caption         =   "登录选课"
      Height          =   375
      Index           =   0
      Left            =   1080
      TabIndex        =   0
      Top             =   2640
      Width           =   1095
   End
   Begin VB.Label Label1 
      Caption         =   "选课系统"
      BeginProperty Font 
         Name            =   "隶书"
         Size            =   26.25
         Charset         =   134
         Weight          =   700
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Height          =   615
      Left            =   1080
      TabIndex        =   2
      Top             =   960
      Width           =   2295
   End
   Begin VB.Image Image1 
      Height          =   3255
      Left            =   0
      Stretch         =   -1  'True
      Top             =   0
      Width           =   4695
   End
End
Attribute VB_Name = "introfrm"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False

    Private Sub aboutcmd_Click(Index As Integer)
        '  显示关于对话框
        frmAbout.Show vbModal, Me
     End Sub
    
    Private Sub Form_Load()
        '  调用模块函数,打开数据库
        Call openDB
    End Sub
    
    Private Sub logcmd_Click(Index As Integer)
        '  显示登陆对话框
        frmLogin.Show vbModal, Me
        '  登陆成功,则退出introfrm窗体
        Unload introfrm
    End Sub

⌨️ 快捷键说明

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