receivepath.frm
来自「三汇CTI示例程序源码」· FRM 代码 · 共 66 行
FRM
66 行
VERSION 5.00
Begin VB.Form Receive
Caption = "Receive File Path"
ClientHeight = 3150
ClientLeft = 60
ClientTop = 390
ClientWidth = 4680
LinkTopic = "Form2"
ScaleHeight = 3150
ScaleWidth = 4680
StartUpPosition = 3 'Windows Default
Begin VB.CommandButton Command2
Caption = "cancel"
Height = 375
Left = 2400
TabIndex = 3
Top = 2640
Width = 975
End
Begin VB.CommandButton Command1
Caption = "ok"
Height = 375
Left = 840
TabIndex = 2
Top = 2640
Width = 975
End
Begin VB.DriveListBox Drive1
Height = 315
Left = 240
TabIndex = 1
Top = 240
Width = 1815
End
Begin VB.DirListBox Dir1
Height = 1665
Left = 240
TabIndex = 0
Top = 720
Width = 4215
End
End
Attribute VB_Name = "Receive"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub Command1_Click()
RcvPath = Dir1.Path
Fax.RxFilePath.Text = RcvPath
Unload Me
End Sub
Private Sub Command2_Click()
Unload Me
End Sub
Private Sub Drive1_Change()
Dir1.Path = Drive1.Drive + "\"
End Sub
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?