frmsm.frm

来自「用VB实现连接oracle817数据月报数输入并统计」· FRM 代码 · 共 94 行

FRM
94
字号
VERSION 5.00
Begin VB.Form frmSm 
   Caption         =   "财务月报"
   ClientHeight    =   2280
   ClientLeft      =   4245
   ClientTop       =   5310
   ClientWidth     =   7005
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   ScaleHeight     =   2280
   ScaleWidth      =   7005
   Begin VB.CommandButton Command1 
      Caption         =   "退  出"
      BeginProperty Font 
         Name            =   "宋体"
         Size            =   14.25
         Charset         =   134
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Height          =   585
      Index           =   1
      Left            =   4590
      TabIndex        =   1
      Top             =   1380
      Width           =   1695
   End
   Begin VB.CommandButton Command1 
      Caption         =   "修  改"
      BeginProperty Font 
         Name            =   "宋体"
         Size            =   14.25
         Charset         =   134
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Height          =   615
      Index           =   0
      Left            =   810
      TabIndex        =   0
      Top             =   1380
      Width           =   1695
   End
   Begin VB.Label Label1 
      Alignment       =   2  'Center
      BeginProperty Font 
         Name            =   "宋体"
         Size            =   14.25
         Charset         =   134
         Weight          =   700
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Height          =   645
      Left            =   330
      TabIndex        =   2
      Top             =   330
      Width           =   6345
   End
End
Attribute VB_Name = "frmSm"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click(Index As Integer)
Dim strSql As String
Dim varRs As Variant
Dim blnHave As Boolean

Select Case Index
       Case 0
            nXgbz = 0
       
       Case 1
            nXgbz = 1

End Select
frm_lrsj.Command1(0).Enabled = True
frm_lrsj.Command1(1).Enabled = True
Unload Me
End Sub

Private Sub Form_Load()
Label1.Caption = gYbhz.YBND & "年" & gYbhz.YBYF & "月的费用已经登记注册!"


End Sub

⌨️ 快捷键说明

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