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

企业管理

开发平台:

Visual Basic

  1. VERSION 5.00
  2. Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "MSCOMCTL.OCX"
  3. Begin VB.Form Class_FrmBank 
  4.    BorderStyle     =   3  'Fixed Dialog
  5.    Caption         =   "选择代发银行"
  6.    ClientHeight    =   3135
  7.    ClientLeft      =   45
  8.    ClientTop       =   330
  9.    ClientWidth     =   2670
  10.    Icon            =   "基础设置_选择代发银行.frx":0000
  11.    LinkTopic       =   "Form1"
  12.    MaxButton       =   0   'False
  13.    MinButton       =   0   'False
  14.    ScaleHeight     =   3135
  15.    ScaleWidth      =   2670
  16.    ShowInTaskbar   =   0   'False
  17.    StartUpPosition =   2  '屏幕中心
  18.    Begin VB.CommandButton Cmd_Cancel 
  19.       Caption         =   "取消(&C)"
  20.       Height          =   300
  21.       Left            =   1470
  22.       TabIndex        =   2
  23.       Top             =   2760
  24.       Width           =   1120
  25.    End
  26.    Begin VB.CommandButton Cmd_Ok 
  27.       Caption         =   "确定(&O)"
  28.       Height          =   300
  29.       Left            =   270
  30.       TabIndex        =   1
  31.       Top             =   2760
  32.       Width           =   1120
  33.    End
  34.    Begin MSComctlLib.TreeView Tre_Bank 
  35.       Height          =   2595
  36.       Left            =   90
  37.       TabIndex        =   0
  38.       Top             =   75
  39.       Width           =   2505
  40.       _ExtentX        =   4419
  41.       _ExtentY        =   4577
  42.       _Version        =   393217
  43.       Style           =   7
  44.       Appearance      =   1
  45.    End
  46. End
  47. Attribute VB_Name = "Class_FrmBank"
  48. Attribute VB_GlobalNameSpace = False
  49. Attribute VB_Creatable = False
  50. Attribute VB_PredeclaredId = True
  51. Attribute VB_Exposed = False
  52. '*******************************************************
  53. '*    模 块 名 称 :选择代发银行
  54. '*    功 能 描 述 :在类别人员选择模块中使用。选择人员的代发银行。
  55. '*    程序员姓名  :田建秀
  56. '*    最后修改人  :田建秀
  57. '*    最后修改时间:2002/01/04
  58. '*    备        注:
  59. '*******************************************************
  60. Option Explicit
  61. Dim Rsc As New ADODB.Recordset
  62. Dim Sql As String
  63. Dim nodX As Node
  64. Dim I As Long
  65. Public BankCode As String
  66. Public BankName As String
  67. Public OpeStatus As String             '"ok" "cancel"
  68. Private Sub Cmd_Cancel_Click()
  69.     OpeStatus = "cancel"
  70.     Unload Me
  71. End Sub
  72. Private Sub Cmd_OK_Click()
  73.     
  74.     With Tre_Bank
  75.         
  76.         For I = 1 To .Nodes.Count
  77.             If .Nodes(I).Selected = True Then
  78.                 BankCode = Right(Trim(.Nodes(I).Key), Len(Trim(.Nodes(I).Key)) - 1)
  79.                 BankName = Trim(.Nodes(I).Text)
  80.             End If
  81.         Next
  82.     End With
  83.     If Trim(BankCode) = "" Then
  84.         Call Xtxxts("必须选择代发银行!", 0, 1)
  85.         Exit Sub
  86.     End If
  87.     OpeStatus = "ok"
  88.     Unload Me
  89. End Sub
  90. Private Sub Form_Load()
  91.     BankCode = ""
  92.     BankName = ""
  93.     Set nodX = Tre_Bank.Nodes.Add(, , "Bc", "清空代发银行")
  94.     If Rsc.State = 1 Then Rsc.Close
  95.     Sql = "select * from PM_Bank order by BankCode"
  96.     Set Rsc = Cw_DataEnvi.DataConnect.Execute(Sql)
  97.     With Rsc
  98.         Do While Not .EOF
  99.             Set nodX = Tre_Bank.Nodes.Add(, , "B" & Trim(!BankCode), Trim(!BankName))
  100.             .MoveNext
  101.         Loop
  102.     End With
  103. End Sub
  104. Private Sub Form_Unload(Cancel As Integer)
  105.     Set Rsc = Nothing
  106. End Sub