modutilitiess.bas

来自「VB automaticlly grap error event」· BAS 代码 · 共 17 行

BAS
17
字号
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 + =
减小字号Ctrl + -
显示快捷键?