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

📄 modutilitiess.bas

📁 VB automaticlly grap error event
💻 BAS
字号:
Attribute VB_Name = "modUtilitiess"
Attribute VB_Ext_KEY = "RVB_UniqueId" ,"3B357C840331"
Option Explicit
Public ErrorHandle As New clsErrorHandle
Public VBInstance As VBIDE.VBE

Public Function FileExists(strFile As String) As Boolean
    'checks to see if the file exists in the file system
    If (Dir$(strFile) <> "") And strFile <> "" Then
        FileExists = True
    Else
        FileExists = False
    End If
    
    Exit Function
End Function

⌨️ 快捷键说明

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