Form_HigherUpCoList.frm
上传用户:zhpu1995
上传日期:2013-09-06
资源大小:61151k
文件大小:4k
源码类别:

企业管理

开发平台:

Visual Basic

  1. VERSION 5.00
  2. Begin VB.Form Frm_HigherUpCoList 
  3.    BorderStyle     =   1  'Fixed Single
  4.    Caption         =   "上级单位"
  5.    ClientHeight    =   1875
  6.    ClientLeft      =   3840
  7.    ClientTop       =   3075
  8.    ClientWidth     =   4380
  9.    Icon            =   "Form_HigherUpCoList.frx":0000
  10.    LinkTopic       =   "Form1"
  11.    LockControls    =   -1  'True
  12.    MaxButton       =   0   'False
  13.    MinButton       =   0   'False
  14.    ScaleHeight     =   1875
  15.    ScaleWidth      =   4380
  16.    StartUpPosition =   2  '屏幕中心
  17.    Begin VB.CommandButton Command1 
  18.       Caption         =   "取消&C"
  19.       Height          =   315
  20.       Index           =   1
  21.       Left            =   2280
  22.       TabIndex        =   7
  23.       Top             =   1410
  24.       Width           =   1155
  25.    End
  26.    Begin VB.CommandButton Command1 
  27.       Caption         =   "确定&D"
  28.       Height          =   315
  29.       Index           =   0
  30.       Left            =   690
  31.       TabIndex        =   6
  32.       Top             =   1410
  33.       Width           =   1155
  34.    End
  35.    Begin VB.TextBox Text1 
  36.       Height          =   285
  37.       Index           =   2
  38.       Left            =   1350
  39.       MaxLength       =   20
  40.       TabIndex        =   5
  41.       Top             =   900
  42.       Width           =   2595
  43.    End
  44.    Begin VB.TextBox Text1 
  45.       Height          =   285
  46.       Index           =   1
  47.       Left            =   1350
  48.       MaxLength       =   15
  49.       TabIndex        =   4
  50.       Top             =   510
  51.       Width           =   1965
  52.    End
  53.    Begin VB.TextBox Text1 
  54.       Height          =   285
  55.       Index           =   0
  56.       Left            =   1350
  57.       MaxLength       =   4
  58.       TabIndex        =   3
  59.       Top             =   120
  60.       Width           =   1785
  61.    End
  62.    Begin VB.Label Label1 
  63.       Caption         =   "备注:"
  64.       Height          =   225
  65.       Index           =   2
  66.       Left            =   240
  67.       TabIndex        =   2
  68.       Top             =   900
  69.       Width           =   855
  70.    End
  71.    Begin VB.Label Label1 
  72.       Caption         =   "名称:"
  73.       Height          =   315
  74.       Index           =   1
  75.       Left            =   240
  76.       TabIndex        =   1
  77.       Top             =   480
  78.       Width           =   855
  79.    End
  80.    Begin VB.Label Label1 
  81.       Caption         =   "编码:"
  82.       Height          =   255
  83.       Index           =   0
  84.       Left            =   240
  85.       TabIndex        =   0
  86.       Top             =   150
  87.       Width           =   855
  88.    End
  89. End
  90. Attribute VB_Name = "Frm_HigherUpCoList"
  91. Attribute VB_GlobalNameSpace = False
  92. Attribute VB_Creatable = False
  93. Attribute VB_PredeclaredId = True
  94. Attribute VB_Exposed = False
  95. Private Sub Command1_Click(Index As Integer)
  96. Dim Ssql As String
  97. On Error GoTo err_exit
  98. If Index = 1 Then Unload Me: Exit Sub
  99. If Trim(Text1(0).Text) = "" Then MsgBox "编号不能为空! ", 16: Text1(0).SetFocus: Exit Sub
  100. If Trim(Text1(1).Text) = "" Then MsgBox "名称不能为空! ", 16: Text1(1).SetFocus: Exit Sub
  101. If Text1(0).Tag = 1 Then
  102. Ssql = "insert into " & Me.Tag & ".dbo.GY_HigherUpCo(code,name,Remark) VALUES( '" & Trim(Text1(0).Text) _
  103.                      & "','" & Trim(Text1(1).Text) & "','" & Trim(Text1(2).Text) & "')"
  104. End If
  105. If Text1(0).Tag = 2 Then
  106. Ssql = "update " & Me.Tag & ".dbo.GY_HigherUpCo set code='" & Trim(Text1(0).Text) _
  107.           & "',name='" & Trim(Text1(1).Text) & "',Remark='" & Trim(Text1(2).Text) & "'" _
  108.           & " WHERE CODE='" & Trim(Text1(1).Tag) & "'"
  109.           
  110. End If
  111. Conn_System.Execute Ssql
  112. Unload Me
  113. Exit Sub
  114. err_exit:
  115.  MsgBox Err.Description, 16
  116. End Sub