frmmodify.frm
上传用户:plkplk66
上传日期:2007-06-06
资源大小:686k
文件大小:3k
源码类别:

其他行业

开发平台:

Visual Basic

  1. VERSION 5.00
  2. Begin VB.Form frmmodify 
  3.    BorderStyle     =   1  'Fixed Single
  4.    Caption         =   "信息修改"
  5.    ClientHeight    =   3030
  6.    ClientLeft      =   45
  7.    ClientTop       =   435
  8.    ClientWidth     =   4290
  9.    LinkTopic       =   "Form1"
  10.    MaxButton       =   0   'False
  11.    MinButton       =   0   'False
  12.    ScaleHeight     =   3030
  13.    ScaleWidth      =   4290
  14.    StartUpPosition =   1  '所有者中心
  15.    Begin VB.CommandButton Command2 
  16.       Caption         =   "取消"
  17.       Height          =   330
  18.       Left            =   3360
  19.       TabIndex        =   7
  20.       Top             =   2415
  21.       Width           =   750
  22.    End
  23.    Begin VB.CommandButton Command1 
  24.       Caption         =   "确定"
  25.       Height          =   330
  26.       Left            =   2625
  27.       TabIndex        =   6
  28.       Top             =   2415
  29.       Width           =   750
  30.    End
  31.    Begin VB.Frame Frame1 
  32.       Height          =   1590
  33.       Left            =   525
  34.       TabIndex        =   1
  35.       Top             =   630
  36.       Width           =   3270
  37.       Begin VB.TextBox Text2 
  38.          Appearance      =   0  'Flat
  39.          Height          =   270
  40.          Left            =   1365
  41.          TabIndex        =   5
  42.          Top             =   1050
  43.          Width           =   1170
  44.       End
  45.       Begin VB.TextBox Text1 
  46.          Appearance      =   0  'Flat
  47.          Height          =   270
  48.          Left            =   1365
  49.          TabIndex        =   3
  50.          Top             =   420
  51.          Width           =   1170
  52.       End
  53.       Begin VB.Label Label3 
  54.          Caption         =   "ID"
  55.          Height          =   225
  56.          Left            =   525
  57.          TabIndex        =   4
  58.          Top             =   1050
  59.          Width           =   435
  60.       End
  61.       Begin VB.Label Label1 
  62.          Caption         =   "姓名"
  63.          Height          =   225
  64.          Left            =   525
  65.          TabIndex        =   2
  66.          Top             =   525
  67.          Width           =   540
  68.       End
  69.    End
  70.    Begin VB.Label Label2 
  71.       Caption         =   "请输入要修改的人的姓名或ID"
  72.       Height          =   225
  73.       Left            =   210
  74.       TabIndex        =   0
  75.       Top             =   210
  76.       Width           =   2640
  77.    End
  78. End
  79. Attribute VB_Name = "frmmodify"
  80. Attribute VB_GlobalNameSpace = False
  81. Attribute VB_Creatable = False
  82. Attribute VB_PredeclaredId = True
  83. Attribute VB_Exposed = False
  84. Option Explicit
  85. Private Sub Command2_Click()
  86. Unload Me
  87. End Sub