addpform.frm

来自「本系统主要介绍了企业工资管理的一些内容。」· FRM 代码 · 共 96 行

FRM
96
字号
VERSION 5.00
Begin VB.Form AddPForm 
   Caption         =   "添加职位"
   ClientHeight    =   3090
   ClientLeft      =   60
   ClientTop       =   450
   ClientWidth     =   4680
   LinkTopic       =   "Form2"
   ScaleHeight     =   3090
   ScaleWidth      =   4680
   StartUpPosition =   3  '窗口缺省
   Begin VB.CommandButton cmdCancel 
      Caption         =   "取消"
      Height          =   375
      Left            =   2640
      TabIndex        =   7
      Top             =   2280
      Width           =   855
   End
   Begin VB.CommandButton CmdAdd 
      Caption         =   " 添加"
      Height          =   375
      Left            =   960
      TabIndex        =   6
      Top             =   2280
      Width           =   855
   End
   Begin VB.TextBox txtValue 
      Height          =   270
      Index           =   1
      Left            =   1800
      TabIndex        =   5
      Top             =   1440
      Width           =   1455
   End
   Begin VB.TextBox txtValue 
      Height          =   270
      Index           =   2
      Left            =   1800
      TabIndex        =   4
      Top             =   840
      Width           =   1455
   End
   Begin VB.TextBox txtValue 
      Height          =   270
      Index           =   0
      Left            =   1800
      TabIndex        =   3
      Top             =   240
      Width           =   1455
   End
   Begin VB.Label lblField 
      AutoSize        =   -1  'True
      Caption         =   "津贴"
      Height          =   180
      Index           =   2
      Left            =   600
      TabIndex        =   2
      Top             =   1560
      Width           =   360
   End
   Begin VB.Label lblField 
      AutoSize        =   -1  'True
      Caption         =   "基本工资"
      Height          =   180
      Index           =   1
      Left            =   600
      TabIndex        =   1
      Top             =   960
      Width           =   720
   End
   Begin VB.Label lblField 
      AutoSize        =   -1  'True
      Caption         =   "职位"
      Height          =   180
      Index           =   0
      Left            =   600
      TabIndex        =   0
      Top             =   360
      Width           =   360
   End
End
Attribute VB_Name = "AddPForm"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub cmdAdd_Click()
 MsgBox "添加成功!"
End Sub

Private Sub cmdCancel_Click()
 Me.Hide
End Sub

⌨️ 快捷键说明

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