modmain.bas
来自「这个例程及文档详细地介绍了VB6中的物件导向概念」· BAS 代码 · 共 12 行
BAS
12 行
Attribute VB_Name = "modMain"
Option Explicit
'Sub Main is executed when the DLL loads and simply initializes
'the default no data byte array one time for the life of the DLL
Sub Main()
ReDim g_arNoData(0)
g_arNoData(0) = BYTE_OFF
End Sub
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?