frmfixdeposit1.frm

来自「银行储蓄管理系统,一个功能强大的简单存款系统!」· FRM 代码 · 共 71 行

FRM
71
字号
VERSION 5.00
Begin VB.Form frmFixDeposit1 
   BackColor       =   &H80000007&
   Caption         =   "Form1"
   ClientHeight    =   840
   ClientLeft      =   60
   ClientTop       =   345
   ClientWidth     =   7800
   LinkTopic       =   "Form1"
   ScaleHeight     =   840
   ScaleWidth      =   7800
   StartUpPosition =   3  '窗口缺省
   Begin VB.CommandButton cmdCancel 
      Cancel          =   -1  'True
      Caption         =   "取 消"
      Height          =   345
      Left            =   6720
      TabIndex        =   2
      Top             =   240
      Width           =   975
   End
   Begin VB.CommandButton cmdNext 
      Caption         =   "下一步"
      Height          =   345
      Left            =   5520
      TabIndex        =   0
      Top             =   240
      Width           =   975
   End
   Begin VB.Label lblFOAA1 
      AutoSize        =   -1  'True
      BackStyle       =   0  'Transparent
      Caption         =   "请确认你的输入无误再点击“下一步”"
      BeginProperty Font 
         Name            =   "宋体"
         Size            =   14.25
         Charset         =   134
         Weight          =   700
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      ForeColor       =   &H00FFFFFF&
      Height          =   285
      Index           =   3
      Left            =   240
      TabIndex        =   1
      Top             =   240
      Width           =   5115
   End
End
Attribute VB_Name = "frmFixDeposit1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub cmdCancel_Click()
    Unload Me
End Sub

Private Sub cmdNext_Click()
    Unload Me
    frmFixDeposit2.Show
End Sub


Private Sub Form_Load()

End Sub

⌨️ 快捷键说明

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