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

📄 frmopt.frm

📁 一个用vb6.0 编写的 cd出租系统,使用access 数据库
💻 FRM
字号:
VERSION 5.00
Begin VB.Form frmopt 
   BackColor       =   &H00FFC0C0&
   Caption         =   "Options"
   ClientHeight    =   3510
   ClientLeft      =   60
   ClientTop       =   450
   ClientWidth     =   4020
   Icon            =   "frmopt.frx":0000
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   Picture         =   "frmopt.frx":08CA
   ScaleHeight     =   3510
   ScaleWidth      =   4020
   StartUpPosition =   3  'Windows Default
   Begin VB.CommandButton cmdexit 
      Caption         =   "&Log Out"
      Height          =   375
      Left            =   2880
      TabIndex        =   6
      Top             =   2760
      Width           =   855
   End
   Begin VB.CommandButton cmdmembers 
      Caption         =   "Search for Mem&bers"
      Height          =   495
      Left            =   2160
      TabIndex        =   5
      Top             =   1920
      Width           =   1455
   End
   Begin VB.CommandButton cmdvideo 
      Caption         =   "Search for &Videos"
      Height          =   495
      Left            =   360
      TabIndex        =   4
      Top             =   1920
      Width           =   1455
   End
   Begin VB.CommandButton cmdpay 
      Caption         =   "&Payment"
      Height          =   495
      Left            =   2160
      TabIndex        =   3
      Top             =   1200
      Width           =   1455
   End
   Begin VB.CommandButton cmdreturn 
      Caption         =   "Ret&urn"
      Height          =   495
      Left            =   360
      TabIndex        =   2
      Top             =   1200
      Width           =   1455
   End
   Begin VB.CommandButton cmdrent 
      Caption         =   "&Rental"
      Height          =   495
      Left            =   2160
      TabIndex        =   1
      Top             =   480
      Width           =   1455
   End
   Begin VB.CommandButton cmdreg 
      Caption         =   "&Member Registration"
      Height          =   495
      Left            =   360
      TabIndex        =   0
      Top             =   480
      Width           =   1455
   End
End
Attribute VB_Name = "frmopt"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub cmdexit_Click()
Unload Me
End Sub

Private Sub cmdmembers_Click()
frmms.Show
End Sub

Private Sub cmdpay_Click()
frmpay.Show
End Sub

Private Sub cmdreg_Click()
frmreg.Show
End Sub

Private Sub cmdrent_Click()
frmrent.Show
End Sub

Private Sub Cmdreturn_Click()
frmreturn.Show
End Sub

Private Sub cmdvideo_Click()
frmvs.Show
End Sub

⌨️ 快捷键说明

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