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

📄 clocatorrelative.cls

📁 Data monkey是一个强大的是数据传输和转换应用程序。使用DataMonkey用户可以把复杂的文本文件格式
💻 CLS
字号:
VERSION 1.0 CLASS
BEGIN
  MultiUse = -1  'True
END
Attribute VB_Name = "CLocatorRelative"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = True
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = False
Private mRelativeTo As String

Public Function GetRelationString() As String
    Relation = mRelativeTo
End Function
Public Sub SetRelation(RelativeTo As Object)

    '*************************************************************************
    ' Tell whatever object we are relative to to notify us when it is 'Found'.
    '*************************************************************************
    
    RelativeTo.RegisterForNotification Me
    mRelativeTo = RelativeTo.Name
    
End Sub
Public Sub Notify(Notifier As Object)
    
    '*************************************
    ' One of our relatives has been found.
    '*************************************
    
    ' Store line, and position information for the found relative.
    
    ' If all relatives have been found, use position information to locate me.
    
End Sub

⌨️ 快捷键说明

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