📄 xferinterface.bas
字号:
Attribute VB_Name = "xferInterface"
Public Function sendFile_01(fileName As String, filePath As String, hostIP As String, hostPort As Double, localUserName As String)
Dim a As New frmSend
a.nameOfFile = fileName
a.pathToFile = filePath
a.hostIP = hostIP
a.hostPort = hostPort
a.userName = localUserName
a.Show
End Function
Public Function receiveFile_01(hostIP As String, hostPort As Double)
Dim a As New frmReceive
a.hostIP = hostIP
a.hostPort = hostPort
a.Show
End Function
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -