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

📄 bassystem.bas

📁 Control your PC with Mobile Phone-it controls your pc using mobile phone from anywhere in the world.
💻 BAS
字号:
Attribute VB_Name = "basSystem"
Public Function LoggedInUser() As String
On Error GoTo ErrTrap
'To get logged on user
Dim strUserName As String
    'Create a buffer
    strUserName = String(100, Chr$(0))
    'Get the username
    GetUserName strUserName, 100
    'strip the rest of the buffer
    strUserName = Left$(strUserName, InStr(strUserName, Chr$(0)) - 1)
    LoggedInUser = strUserName
    Exit Function
ErrTrap:
    Exit Function
End Function

⌨️ 快捷键说明

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