You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
959 B
OpenEdge ABL

VERSION 1.0 CLASS
BEGIN
MultiUse = -1 'True
Persistable = 0 'NotPersistable
DataBindingBehavior = 0 'vbNone
DataSourceBehavior = 0 'vbNone
MTSTransactionMode = 0 'NotAnMTSObject
END
Attribute VB_Name = "CVWValue"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = True
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = False
Attribute VB_Description = "Used in collections for storing data"
Option Explicit
'Klassenmodul für die Speicherung von Name und Wert eines Eintrags oder Schlüssels
'© 2000-2002, INOSOFT GmbH
'Version 4.04.000
'Wird genutzt von den Modulen:
'-MVWIni.bas Modul für den Zugriff auf INI-Dateien (Text-Dateien)
'-MVWRegistry.bas Modul für den Zugriff auf die Windows-Registierungsdatenbank (Registry)
Public Name As String
Attribute Name.VB_VarDescription = "Name of an entry, key, value, ..."
Public Value As Variant
Attribute Value.VB_VarDescription = "Value of an entry , key, value, ..."