iexport.cls

来自「VB做的报表设计源程序,非常不错,可以自定义模版」· CLS 代码 · 共 48 行

CLS
48
字号
VERSION 1.0 CLASS
BEGIN
  MultiUse = -1  'True
  Persistable = 0  'NotPersistable
  DataBindingBehavior = 0  'vbNone
  DataSourceBehavior  = 0  'vbNone
  MTSTransactionMode  = 0  'NotAnMTSObject
END
Attribute VB_Name = "IExport"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = True
'////////////////////////////////////////////////////////
'///              Common Export Interface
'///                    (IExport.cls)
'///_____________________________________________________
'/// Abstract class that brings the common interface for
'/// the exportation process, each export component must
'/// implement this class.
'///_____________________________________________________
'/// Last modification  : Ago//2000
'/// Last modified by   : Leontti R.
'/// Modification reason: Created
'/// Project: RamoSoft Component Suite ' I borrowed this code from a another project from myself
'/// Author: Leontti A. Ramos M. (leontti@leontti.net)
'/// RamoSoft de Mexico S.A. de C.V.
'////////////////////////////////////////////////////////
Option Explicit

Public FileName As String


Public Function DoAction(ByVal iAction As Integer, _
    ByVal vValue As Variant) As Integer
End Function

Public Function Export(oPages As Pages) As Integer
Attribute Export.VB_UserMemId = 0
End Function

Public Function QueryInfo(iType As Integer) As Variant
End Function

Public Property Get StillWorking() As Boolean
End Property

⌨️ 快捷键说明

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