📄 55.frm
字号:
VERSION 5.00
Begin VB.Form Form3
Caption = "Form3"
ClientHeight = 7035
ClientLeft = 60
ClientTop = 450
ClientWidth = 6750
LinkTopic = "Form3"
ScaleHeight = 7035
ScaleWidth = 6750
StartUpPosition = 3 'Windows Default
Begin VB.CommandButton Command1
Caption = "返回"
Height = 495
Left = 2280
TabIndex = 4
Top = 4680
Width = 1215
End
Begin VB.CommandButton CmdRepair
Caption = "维修"
Height = 495
Left = 2280
TabIndex = 3
Top = 3720
Width = 1215
End
Begin VB.CommandButton CmdSale
Caption = "变卖"
Height = 495
Left = 2280
TabIndex = 2
Top = 2640
Width = 1215
End
Begin VB.CommandButton CmdBuy
Caption = "买进"
Height = 495
Left = 2280
TabIndex = 1
Top = 1680
Width = 1215
End
Begin VB.Label Label1
Alignment = 2 'Center
Caption = "请选择要变更的资产方式"
BeginProperty Font
Name = "华文行楷"
Size = 14.25
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 585
Left = 1440
TabIndex = 0
Top = 720
Width = 3495
End
End
Attribute VB_Name = "Form3"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub CmdBuy_Click()
Me.Hide
Load Form7
Form7.Show
'Unload Form3
End Sub
Private Sub CmdRepair_Click()
Me.Hide
Form6.Show
End Sub
Private Sub CmdSale_Click()
Me.Hide
Form5.Show
End Sub
Private Sub Command1_Click()
Me.Hide
Form2.Show
End Sub
Private Sub Command2_Click()
Me.Hide
Form1.Show
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -