📄 form0807.frm
字号:
VERSION 5.00
Object = "{FE0065C0-1B7B-11CF-9D53-00AA003C9CB6}#1.1#0"; "COMCT232.OCX"
Begin VB.Form Form1
Caption = "正在查找..."
ClientHeight = 3720
ClientLeft = 60
ClientTop = 345
ClientWidth = 4425
LinkTopic = "Form1"
ScaleHeight = 3720
ScaleWidth = 4425
StartUpPosition = 3 '窗口缺省
Begin VB.Frame Frame1
Height = 1575
Left = 360
TabIndex = 3
Top = 1680
Width = 3615
Begin ComCtl2.Animation Animavi
Height = 1095
Left = 120
TabIndex = 4
Top = 240
Width = 3375
_ExtentX = 5953
_ExtentY = 1931
_Version = 327681
Center = -1 'True
FullWidth = 225
FullHeight = 73
End
End
Begin VB.CommandButton cmdStop
Caption = "停止"
Height = 375
Left = 2640
TabIndex = 2
Top = 360
Width = 975
End
Begin VB.CommandButton cmdPlay
Caption = "开始"
Height = 375
Left = 840
TabIndex = 1
Top = 360
Width = 975
End
Begin VB.Label Label1
Caption = "从""A: "" 到""C """
Height = 375
Left = 360
TabIndex = 0
Top = 1080
Width = 1455
End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub cmdPlay_Click()
'播放
Animavi.Open "c:\program files\microsoft visual studio\common\graphics\videos" _
& "\Search.avi"
'Animavi.AutoPlay = True
Animavi.Play
End Sub
Private Sub cmdStop_Click()
'停止
Animavi.Stop
Animavi.Close
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -