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

📄 dlgregister.frm

📁 这是个很好比较齐全的合同管理系统大家可以下载有很多用途
💻 FRM
字号:
VERSION 5.00
Begin VB.Form dlgRegister 
   BackColor       =   &H80000016&
   BorderStyle     =   3  'Fixed Dialog
   Caption         =   "对话框标题"
   ClientHeight    =   3195
   ClientLeft      =   3090
   ClientTop       =   2985
   ClientWidth     =   6030
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   3195
   ScaleWidth      =   6030
   ShowInTaskbar   =   0   'False
   Begin VB.Frame Frame1 
      BackColor       =   &H80000016&
      Caption         =   "[您的注册信息]"
      Height          =   2895
      Left            =   120
      TabIndex        =   2
      Top             =   120
      Width           =   4455
      Begin VB.TextBox Text4 
         Height          =   375
         Left            =   1560
         TabIndex        =   10
         Text            =   "Text4"
         Top             =   2280
         Width           =   2655
      End
      Begin VB.TextBox Text3 
         Height          =   375
         Left            =   1560
         TabIndex        =   9
         Text            =   "Text3"
         Top             =   1560
         Width           =   2655
      End
      Begin VB.TextBox Text2 
         Height          =   390
         Left            =   1560
         TabIndex        =   8
         Text            =   "Text2"
         Top             =   840
         Width           =   2655
      End
      Begin VB.TextBox Text1 
         Height          =   375
         Left            =   1560
         TabIndex        =   7
         Text            =   "Text1"
         Top             =   240
         Width           =   2655
      End
      Begin VB.Label Label4 
         BackStyle       =   0  'Transparent
         Caption         =   "现任职务:"
         Height          =   255
         Left            =   240
         TabIndex        =   6
         Top             =   2400
         Width           =   1095
      End
      Begin VB.Label Label3 
         BackStyle       =   0  'Transparent
         Caption         =   "所在部门:"
         Height          =   255
         Left            =   240
         TabIndex        =   5
         Top             =   1680
         Width           =   1215
      End
      Begin VB.Label Label2 
         BackStyle       =   0  'Transparent
         Caption         =   "职员姓名:"
         Height          =   255
         Left            =   240
         TabIndex        =   4
         Top             =   960
         Width           =   1215
      End
      Begin VB.Label Label1 
         BackStyle       =   0  'Transparent
         Caption         =   "职员编号:"
         Height          =   255
         Left            =   240
         TabIndex        =   3
         Top             =   360
         Width           =   1335
      End
   End
   Begin VB.CommandButton CancelButton 
      Caption         =   "取消"
      Height          =   375
      Left            =   4680
      TabIndex        =   1
      Top             =   600
      Width           =   1215
   End
   Begin VB.CommandButton OKButton 
      Caption         =   "确定"
      Height          =   375
      Left            =   4680
      TabIndex        =   0
      Top             =   120
      Width           =   1215
   End
End
Attribute VB_Name = "dlgRegister"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False

Option Explicit

Private Sub CancelButton_Click()
    Unload Me
End Sub

Private Sub OKButton_Click()
    SaveSetting "e_ms", "personal", "职员编号", Text1.Text
    SaveSetting "e_ms", "personal", "职员姓名", Text1.Text
    SaveSetting "e_ms", "personal", "所在部门", Text1.Text
    SaveSetting "e_ms", "personal", "现任职务", Text1.Text
    Unload Me
End Sub

⌨️ 快捷键说明

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