📄 selprotect.frm
字号:
VERSION 5.00
Begin VB.Form SelProject
BorderStyle = 3 'Fixed Dialog
Caption = "打开工程"
ClientHeight = 3135
ClientLeft = 2760
ClientTop = 3750
ClientWidth = 4380
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 3135
ScaleWidth = 4380
ShowInTaskbar = 0 'False
Begin VB.FileListBox File1
Height = 2610
Left = 180
Pattern = "*.ini"
TabIndex = 0
Top = 480
Width = 2355
End
Begin VB.CommandButton CancelButton
Caption = "取消(&C)"
Height = 375
Left = 2760
TabIndex = 2
Top = 2340
Width = 1215
End
Begin VB.CommandButton OKButton
Caption = "打开(&O)"
Height = 375
Left = 2760
TabIndex = 1
Top = 600
Width = 1215
End
Begin VB.Label Label1
AutoSize = -1 'True
Caption = "\station"
Height = 180
Left = 180
TabIndex = 3
Top = 120
Width = 720
End
End
Attribute VB_Name = "SelProject"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub CancelButton_Click()
Unload Me
Unload fMainForm
End Sub
Private Sub File1_GotFocus()
File1.ListIndex = 0
End Sub
Private Sub Form_GotFocus()
File1.SetFocus
End Sub
Private Sub Form_Load()
Label1.Caption = App.Path & "\station"
File1.Path = App.Path & "\station\"
End Sub
Private Sub OKButton_Click()
Unload Me
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -