- VERSION 5.00
- Begin VB.Form Form3
- Caption = "Form3"
- ClientHeight = 4770
- ClientLeft = 60
- ClientTop = 450
- ClientWidth = 6210
- LinkTopic = "Form3"
- ScaleHeight = 4770
- ScaleWidth = 6210
- StartUpPosition = 3 '窗口缺省
- Begin VB.CommandButton Command2
- Caption = "取消"
- Height = 495
- Left = 3360
- TabIndex = 11
- Top = 3960
- Width = 1455
- End
- Begin VB.CommandButton Command1
- Caption = "修改"
- Height = 495
- Left = 1080
- TabIndex = 10
- Top = 3960
- Width = 1455
- End
- Begin VB.TextBox Text5
- Height = 375
- Left = 2280
- TabIndex = 9
- Top = 3240
- Width = 1575
- End
- Begin VB.TextBox Text4
- Height = 375
- Left = 2280
- TabIndex = 8
- Top = 2640
- Width = 1575
- End
- Begin VB.TextBox Text3
- Height = 375
- Left = 2280
- TabIndex = 7
- Top = 2040
- Width = 1575
- End
- Begin VB.TextBox Text2
- Height = 375
- Left = 2280
- TabIndex = 3
- Top = 1320
- Width = 1575
- End
- Begin VB.TextBox Text1
- Height = 375
- Left = 2280
- TabIndex = 1
- Top = 600
- Width = 1575
- End
- Begin VB.Label Label5
- Caption = "部门:"
- Height = 255
- Left = 1560
- TabIndex = 6
- Top = 3360
- Width = 615
- End
- Begin VB.Label Label4
- Caption = "职位:"
- Height = 255
- Left = 1560
- TabIndex = 5
- Top = 2760
- Width = 615
- End
- Begin VB.Label Label3
- Caption = "性别:"
- Height = 255
- Left = 1560
- TabIndex = 4
- Top = 2160
- Width = 615
- End
- Begin VB.Label Label2
- Caption = "名字:"
- Height = 255
- Left = 1560
- TabIndex = 2
- Top = 1440
- Width = 615
- End
- Begin VB.Label Label1
- Caption = "编号:"
- Height = 255
- Left = 1560
- TabIndex = 0
- Top = 720
- Width = 615
- End
- End
- Attribute VB_Name = "Form3"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub Command1_Click() '修改记录
- res.Fields(0) = Form3.Text1.Text
- res.Fields(1) = Form3.Text2.Text
- res.Fields(2) = Form3.Text3.Text
- res.Fields(3) = Form3.Text4.Text
- res.Fields(4) = Form3.Text5.Text
- res.Update
- Unload Me
- End Sub
- Private Sub Command2_Click()
- Unload Me
- End Sub