WCCmClassID.bas
上传用户:davilee3
上传日期:2015-04-22
资源大小:986k
文件大小:1k
源码类别:

浏览器

开发平台:

Visual Basic

  1. Attribute VB_Name = "mWCCmClassID"
  2. '---------------------------------------------------------------------------------------
  3. ' Module    : mWCCmClassID
  4. ' DateTime  : 2005-4-8 01:45
  5. ' Author    : Lingll
  6. ' Purpose   : 存放LCmnCtrl32.dll相关
  7. '---------------------------------------------------------------------------------------
  8. Option Explicit
  9. 'cStatusbar32 class
  10. Public Const strCLSID_cStatusbar32 As String = "{024AB8AD-99CC-43C0-96B4-5C32CC26CDC0}"
  11. 'cSysListView32 class
  12. Public Const strCLSID_cSysListView32 As String = "{5640DAF3-B3D9-4210-BA9A-33A3B124D682}"
  13. 'cToolBar class
  14. Public Const strCLSID_cToolBar As String = "{124F39D6-BEC5-4EF7-97FF-2DF7D4ADE7E4}"
  15. 'cTabControl32 class
  16. Public Const strCLSID_cTabControl32 As String = "{ED9024E8-15AA-409D-A890-F813E3D2DB1F}"
  17. 'cTreeView32 class
  18. Public Const strCLSID_cTreeView32 As String = "{3A5E9FAD-36E7-49E6-A344-DDBE0FE2ECB2}"
  19. 'cRebar class
  20. Public Const strCLSID_cRebar As String = "{64874762-4A0E-4ECD-ADCF-9DC5DDA46740}"
  21. Private Const m_dllfile As String = "LCmnCtrl32.dll"
  22. Public Function CreateCmmCtrl(vClsId$) As Object
  23. Dim tDll As cCrDllObj
  24. Set tDll = New cCrDllObj
  25. tDll.IniClsId vClsId
  26. Set CreateCmmCtrl = tDll.CreateMyDllObject(App.path & "" & m_dllfile)
  27. tDll.UnloadDll
  28. End Function