module2.bas

来自「用户MODBUS规约通信编程,起参考作用.」· BAS 代码 · 共 17 行

BAS
17
字号
Attribute VB_Name = "Module2"
Sub Main()
    
    Dim f As New frmsplash1
    f.Left = 4000
    f.Top = 2500
    
    f.Show vbModal
End Sub
Function fullpath(filename As String)
    temp = App.path
    If Right$(temp, 1) <> "\" Then temp = temp & "\"
    fullpath = temp & filename
End Function
  

⌨️ 快捷键说明

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