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

企业管理

开发平台:

Visual Basic

  1. VERSION 1.0 CLASS
  2. BEGIN
  3.   MultiUse = -1  'True
  4.   Persistable = 0  'NotPersistable
  5.   DataBindingBehavior = 0  'vbNone
  6.   DataSourceBehavior  = 0  'vbNone
  7.   MTSTransactionMode  = 0  'NotAnMTSObject
  8. END
  9. Attribute VB_Name = "CCode"
  10. Attribute VB_GlobalNameSpace = False
  11. Attribute VB_Creatable = True
  12. Attribute VB_PredeclaredId = False
  13. Attribute VB_Exposed = False
  14. Option Explicit
  15. Public Code As String
  16. Public Name As String
  17. Public Function Include(s As String) As Boolean '判断s是否=CCode
  18.     If UCase(s) = UCase(Code) Or UCase(s) = UCase(Name) Then
  19.         Include = True
  20.     Else
  21.         Include = False
  22.     End If
  23. End Function