📄 module1.bas
字号:
Attribute VB_Name = "Module1"
Option Explicit
' The Ticker will call back into this function when
' the Interval has elapsed.
'
' The signature should be followed closely.
Public Sub TickerCallback(ByRef Ticker As Ticker, ByRef Data As Variant)
' We were smart enough to allow the Ticker to carry
' some data around for easy access during callbacks.
Dim c As Counter
Set c = Data
c.Count = c.Count + 1
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -