pexam10_5.frm
来自「深圳大学的vb上机与教学的课件」· FRM 代码 · 共 198 行
FRM
198 行
VERSION 5.00
Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "mscomctl.ocx"
Begin VB.Form Form1
Caption = "选择图形的形状和移动方向"
ClientHeight = 2490
ClientLeft = 60
ClientTop = 345
ClientWidth = 4680
LinkTopic = "Form1"
ScaleHeight = 2490
ScaleWidth = 4680
StartUpPosition = 3 '窗口缺省
Begin VB.Timer Timer1
Interval = 100
Left = 0
Top = 1800
End
Begin MSComctlLib.ImageList ImageList1
Left = 0
Top = 1200
_ExtentX = 1005
_ExtentY = 1005
BackColor = -2147483643
ImageWidth = 25
ImageHeight = 26
MaskColor = 12632256
_Version = 393216
BeginProperty Images {2C247F25-8591-11D1-B16A-00C0F0283628}
NumListImages = 9
BeginProperty ListImage1 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "pexam10_5.frx":0000
Key = ""
EndProperty
BeginProperty ListImage2 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "pexam10_5.frx":080A
Key = ""
EndProperty
BeginProperty ListImage3 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "pexam10_5.frx":1014
Key = ""
EndProperty
BeginProperty ListImage4 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "pexam10_5.frx":181E
Key = ""
EndProperty
BeginProperty ListImage5 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "pexam10_5.frx":2028
Key = ""
EndProperty
BeginProperty ListImage6 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "pexam10_5.frx":247A
Key = ""
EndProperty
BeginProperty ListImage7 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "pexam10_5.frx":28CC
Key = ""
EndProperty
BeginProperty ListImage8 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "pexam10_5.frx":2D1E
Key = ""
EndProperty
BeginProperty ListImage9 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "pexam10_5.frx":3170
Key = ""
EndProperty
EndProperty
End
Begin MSComctlLib.Toolbar Toolbar1
Align = 1 'Align Top
Height = 570
Left = 0
TabIndex = 0
Top = 0
Width = 4680
_ExtentX = 8255
_ExtentY = 1005
ButtonWidth = 847
ButtonHeight = 847
Appearance = 1
ImageList = "ImageList1"
_Version = 393216
BeginProperty Buttons {66833FE8-8583-11D1-B16A-00C0F0283628}
NumButtons = 11
BeginProperty Button1 {66833FEA-8583-11D1-B16A-00C0F0283628}
Key = "A1"
Object.ToolTipText = "圆"
ImageIndex = 1
Style = 2
EndProperty
BeginProperty Button2 {66833FEA-8583-11D1-B16A-00C0F0283628}
Key = "A2"
Object.ToolTipText = "椭圆"
ImageIndex = 2
Style = 2
EndProperty
BeginProperty Button3 {66833FEA-8583-11D1-B16A-00C0F0283628}
Key = "A3"
Object.ToolTipText = "圆角矩形"
ImageIndex = 3
Style = 2
EndProperty
BeginProperty Button4 {66833FEA-8583-11D1-B16A-00C0F0283628}
Key = "A4"
Object.ToolTipText = "矩形"
ImageIndex = 4
Style = 2
EndProperty
BeginProperty Button5 {66833FEA-8583-11D1-B16A-00C0F0283628}
Key = "S1"
Style = 3
EndProperty
BeginProperty Button6 {66833FEA-8583-11D1-B16A-00C0F0283628}
Key = "B1"
Object.ToolTipText = "上移"
ImageIndex = 5
EndProperty
BeginProperty Button7 {66833FEA-8583-11D1-B16A-00C0F0283628}
Key = "B2"
Object.ToolTipText = "下移"
ImageIndex = 6
EndProperty
BeginProperty Button8 {66833FEA-8583-11D1-B16A-00C0F0283628}
Key = "B3"
Object.ToolTipText = "左移"
ImageIndex = 7
EndProperty
BeginProperty Button9 {66833FEA-8583-11D1-B16A-00C0F0283628}
Key = "B4"
Object.ToolTipText = "右移"
ImageIndex = 8
EndProperty
BeginProperty Button10 {66833FEA-8583-11D1-B16A-00C0F0283628}
Key = "S2"
Style = 3
EndProperty
BeginProperty Button11 {66833FEA-8583-11D1-B16A-00C0F0283628}
Key = "C1"
Object.ToolTipText = "停止"
ImageIndex = 9
EndProperty
EndProperty
BorderStyle = 1
End
Begin VB.Shape Shape1
FillColor = &H00C0C0FF&
FillStyle = 0 'Solid
Height = 495
Left = 0
Top = 570
Width = 735
End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Dim Direction As Integer
Private Sub Timer1_Timer()
Select Case Direction
Case 1
If Shape1.Top - 50 > Toolbar1.Height Then Shape1.Top = Shape1.Top - 50
Case 2
If Shape1.Top + Shape1.Height + 50 < Form1.ScaleHeight Then Shape1.Top = Shape1.Top + 50
Case 3
If Shape1.Left - 50 > 0 Then Shape1.Left = Shape1.Left - 50
Case 4
If Shape1.Left + Shape1.Width + 50 < Form1.ScaleWidth Then Shape1.Left = Shape1.Left + 50
End Select
End Sub
Private Sub Toolbar1_ButtonClick(ByVal Button As MSComctlLib.Button)
Select Case Button.Index
Case 1
Shape1.Shape = 3
Case 2
Shape1.Shape = 2
Case 3
Shape1.Shape = 4
Case 4
Shape1.Shape = 0
Case 6
Direction = 1
Timer1.Enabled = True
Case 7
Direction = 2
Timer1.Enabled = True
Case 8
Direction = 3
Timer1.Enabled = True
Case 9
Direction = 4
Timer1.Enabled = True
Case 11
Timer1.Enabled = False
End Select
End Sub
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?