⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 rptdatacls.cls

📁 本系统是一个报表分析查询系统
💻 CLS
字号:
VERSION 1.0 CLASS
BEGIN
  MultiUse = -1  'True
  Persistable = 0  'NotPersistable
  DataBindingBehavior = 0  'vbNone
  DataSourceBehavior  = 0  'vbNone
  MTSTransactionMode  = 0  'NotAnMTSObject
END
Attribute VB_Name = "RptDataCls"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = True
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = True
Option Explicit

Public BaseInfo As Object

Public Property Let setUserID(ByVal inUserID As Long)
 BaseInfo.setUserID = inUserID
End Property

Public Property Let setRptID(ByVal inRptID As Long)
 RptID = inRptID
End Property

Public Function mShow(ByVal inModal) As Boolean
 On Error GoTo ErrHandle
 Dim MsgInfo As String
 ShowSign = False
 If RptDataInit(MsgInfo) = False Then
  MsgBox MsgInfo, vbCritical + vbOKOnly, meObj.BaseInfo.getMsgInfo
  mShow = False
  Exit Function
 End If
 
 If meRpt.lBill.Count > 0 Then
  FiltrateFrm.Show vbModal
  If ExeSign = False Then
   mShow = False
   Exit Function
  End If
 End If
 
' If ShowSign = False Then
'  mShow = False
'  Exit Function
' End If
 frmList.Show inModal
 mShow = True
 Exit Function
ErrHandle:
 mShow = False
End Function

Private Sub Class_Initialize()
 Set BaseInfo = CreateObject("StdRptBase.StdRptBaseCls")
End Sub

Private Sub Class_Terminate()
 Set BaseInfo = Nothing
End Sub




⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -