?? dlgregister.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 = "現(xiàn)任職務(wù):"
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", "現(xiàn)任職務(wù)", Text1.Text
Unload Me
End Sub
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -