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

企业管理

开发平台:

Visual Basic

  1. VERSION 5.00
  2. Begin VB.Form Ed_EmpCorArSortFrm 
  3.    BorderStyle     =   1  'Fixed Single
  4.    Caption         =   "档案类别"
  5.    ClientHeight    =   1095
  6.    ClientLeft      =   4170
  7.    ClientTop       =   1950
  8.    ClientWidth     =   2895
  9.    Icon            =   "辅助_相关档案类别选择.frx":0000
  10.    LinkTopic       =   "Form1"
  11.    MaxButton       =   0   'False
  12.    MinButton       =   0   'False
  13.    ScaleHeight     =   1095
  14.    ScaleWidth      =   2895
  15.    StartUpPosition =   1  '所有者中心
  16.    Begin VB.CommandButton Cmd_Cancel 
  17.       Caption         =   "取消(&C)"
  18.       Height          =   300
  19.       Left            =   1800
  20.       TabIndex        =   2
  21.       Top             =   690
  22.       Width           =   1000
  23.    End
  24.    Begin VB.CommandButton Cmd_Yes 
  25.       Caption         =   "确定(&O)"
  26.       Height          =   300
  27.       Left            =   675
  28.       TabIndex        =   1
  29.       Top             =   690
  30.       Width           =   1000
  31.    End
  32.    Begin VB.ComboBox Cbo_ArSort 
  33.       Height          =   300
  34.       Left            =   135
  35.       Style           =   2  'Dropdown List
  36.       TabIndex        =   0
  37.       Top             =   270
  38.       Width           =   2685
  39.    End
  40. End
  41. Attribute VB_Name = "Ed_EmpCorArSortFrm"
  42. Attribute VB_GlobalNameSpace = False
  43. Attribute VB_Creatable = False
  44. Attribute VB_PredeclaredId = True
  45. Attribute VB_Exposed = False
  46. '**************************************************************************************************
  47. '*    模 块 名 称 :相关档案类别选择
  48. '*    功 能 描 述 :相关档案类别选择
  49. '*    程序员姓名  :刘刚
  50. '*    最后修改人  :刘刚
  51. '*    最后修改时间:2001/12/04
  52. '*    备        注:
  53. '*
  54. '**************************************************************************************************
  55. Dim ArSort() As String
  56. Private Sub Cmd_Yes_Click()
  57.     Cbo_ArSort.Tag = ArSort(Cbo_ArSort.ListIndex)
  58.     Me.Hide
  59. End Sub
  60. Private Sub Cmd_Cancel_Click()
  61.     Cbo_ArSort.Tag = ""
  62.     Me.Hide
  63. End Sub
  64. Private Sub Form_Activate()
  65.     Dim i As Integer
  66.     Dim tmpRs As New Recordset
  67.     Set tmpRs = Cw_DataEnvi.DataConnect.Execute("select * from Rs_ArSort")
  68.     i = 0
  69.     Cbo_ArSort.Clear
  70.     Do While Not tmpRs.EOF
  71.         Cbo_ArSort.AddItem Trim(tmpRs!ArName)
  72.         ReDim Preserve ArSort(i + 1)
  73.         ArSort(i) = Trim(tmpRs!ArSort)
  74.         i = i + 1
  75.         tmpRs.MoveNext
  76.     Loop
  77.     If Cbo_ArSort.List(0) <> "" Then
  78.         Cbo_ArSort.ListIndex = 0
  79.     End If
  80.     tmpRs.Close
  81. End Sub