Form3.frm
上传用户:whsjsoft
上传日期:2022-07-21
资源大小:26k
文件大小:3k
源码类别:

数据库编程

开发平台:

Visual Basic

  1. VERSION 5.00
  2. Begin VB.Form Form3 
  3.    Caption         =   "Form3"
  4.    ClientHeight    =   4770
  5.    ClientLeft      =   60
  6.    ClientTop       =   450
  7.    ClientWidth     =   6210
  8.    LinkTopic       =   "Form3"
  9.    ScaleHeight     =   4770
  10.    ScaleWidth      =   6210
  11.    StartUpPosition =   3  '窗口缺省
  12.    Begin VB.CommandButton Command2 
  13.       Caption         =   "取消"
  14.       Height          =   495
  15.       Left            =   3360
  16.       TabIndex        =   11
  17.       Top             =   3960
  18.       Width           =   1455
  19.    End
  20.    Begin VB.CommandButton Command1 
  21.       Caption         =   "修改"
  22.       Height          =   495
  23.       Left            =   1080
  24.       TabIndex        =   10
  25.       Top             =   3960
  26.       Width           =   1455
  27.    End
  28.    Begin VB.TextBox Text5 
  29.       Height          =   375
  30.       Left            =   2280
  31.       TabIndex        =   9
  32.       Top             =   3240
  33.       Width           =   1575
  34.    End
  35.    Begin VB.TextBox Text4 
  36.       Height          =   375
  37.       Left            =   2280
  38.       TabIndex        =   8
  39.       Top             =   2640
  40.       Width           =   1575
  41.    End
  42.    Begin VB.TextBox Text3 
  43.       Height          =   375
  44.       Left            =   2280
  45.       TabIndex        =   7
  46.       Top             =   2040
  47.       Width           =   1575
  48.    End
  49.    Begin VB.TextBox Text2 
  50.       Height          =   375
  51.       Left            =   2280
  52.       TabIndex        =   3
  53.       Top             =   1320
  54.       Width           =   1575
  55.    End
  56.    Begin VB.TextBox Text1 
  57.       Height          =   375
  58.       Left            =   2280
  59.       TabIndex        =   1
  60.       Top             =   600
  61.       Width           =   1575
  62.    End
  63.    Begin VB.Label Label5 
  64.       Caption         =   "部门:"
  65.       Height          =   255
  66.       Left            =   1560
  67.       TabIndex        =   6
  68.       Top             =   3360
  69.       Width           =   615
  70.    End
  71.    Begin VB.Label Label4 
  72.       Caption         =   "职位:"
  73.       Height          =   255
  74.       Left            =   1560
  75.       TabIndex        =   5
  76.       Top             =   2760
  77.       Width           =   615
  78.    End
  79.    Begin VB.Label Label3 
  80.       Caption         =   "性别:"
  81.       Height          =   255
  82.       Left            =   1560
  83.       TabIndex        =   4
  84.       Top             =   2160
  85.       Width           =   615
  86.    End
  87.    Begin VB.Label Label2 
  88.       Caption         =   "名字:"
  89.       Height          =   255
  90.       Left            =   1560
  91.       TabIndex        =   2
  92.       Top             =   1440
  93.       Width           =   615
  94.    End
  95.    Begin VB.Label Label1 
  96.       Caption         =   "编号:"
  97.       Height          =   255
  98.       Left            =   1560
  99.       TabIndex        =   0
  100.       Top             =   720
  101.       Width           =   615
  102.    End
  103. End
  104. Attribute VB_Name = "Form3"
  105. Attribute VB_GlobalNameSpace = False
  106. Attribute VB_Creatable = False
  107. Attribute VB_PredeclaredId = True
  108. Attribute VB_Exposed = False
  109. Private Sub Command1_Click()  '修改记录
  110. res.Fields(0) = Form3.Text1.Text
  111. res.Fields(1) = Form3.Text2.Text
  112. res.Fields(2) = Form3.Text3.Text
  113. res.Fields(3) = Form3.Text4.Text
  114. res.Fields(4) = Form3.Text5.Text
  115. res.Update
  116. Unload Me
  117. End Sub
  118. Private Sub Command2_Click()
  119. Unload Me
  120. End Sub