home *** CD-ROM | disk | FTP | other *** search
Visual Basic class definition | 2001-09-09 | 1.1 KB | 37 lines |
- VERSION 1.0 CLASS
- BEGIN
- MultiUse = -1 'True
- Persistable = 0 'NotPersistable
- DataBindingBehavior = 0 'vbNone
- DataSourceBehavior = 1 'vbDataSource
- MTSTransactionMode = 0 'NotAnMTSObject
- END
- Attribute VB_Name = "CBound"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = True
- Attribute VB_PredeclaredId = False
- Attribute VB_Exposed = False
- '-----------------------------------------------------------------------------
- ' This is a part of the BeeGrid ActiveX control.
- ' Copyright ⌐ 2000 Stinga
- ' All rights reserved.
- '
- ' You have a right to use and distribute the BeeGrid sample files in original
- ' form or modified, provided that you agree that Stinga has no warranty,
- ' obligations, or liability for any sample application files.
- '-----------------------------------------------------------------------------
- Option Explicit
-
- Private Sub Class_GetDataMember(DataMember As String, Data As Object)
- Dim tl As New CSimpleOLEDB
-
- 'set the Filename property
- tl.Filename = DataMember
-
- 'call the LoadData method to populate the class
- tl.LoadData
-
- Set Data = tl
- End Sub
-
-