modmain.bas

来自「VB 加密----------能够加密解密控件」· BAS 代码 · 共 42 行

BAS
42
字号
Attribute VB_Name = "modMain"
'    CopyRight (c) 2004 Kelly Ethridge
'
'    This file is part of VBCorLib.
'
'    VBCorLib is free software; you can redistribute it and/or modify
'    it under the terms of the GNU Library General Public License as published by
'    the Free Software Foundation; either version 2.1 of the License, or
'    (at your option) any later version.
'
'    VBCorLib is distributed in the hope that it will be useful,
'    but WITHOUT ANY WARRANTY; without even the implied warranty of
'    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
'    GNU Library General Public License for more details.
'
'    You should have received a copy of the GNU Library General Public License
'    along with Foobar; if not, write to the Free Software
'    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
'
'    Module: modMain
'
Option Explicit

Public InIDE As Boolean



Private Sub Main()
    Debug.Assert SetInIDE
    
    Call InitWin32Api
    Call InitHelper
    Call InitPublicFunctions
    Call InitcDateTimeHelpers
    Call InitEncodingHelpers
End Sub

Private Function SetInIDE() As Boolean
    InIDE = True
    SetInIDE = True
End Function

⌨️ 快捷键说明

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