📄 jinhuoguanli.frm
字号:
VERSION 5.00
Begin VB.Form jinhuo
Caption = "进货管理"
ClientHeight = 3195
ClientLeft = 60
ClientTop = 345
ClientWidth = 4245
LinkTopic = "Form1"
ScaleHeight = 3195
ScaleWidth = 4245
StartUpPosition = 3 '窗口缺省
Begin VB.Frame Frame1
BackColor = &H00FF8080&
Height = 3135
Left = 0
TabIndex = 0
Top = 0
Width = 4215
Begin VB.CommandButton Command4
Caption = "退出"
Height = 615
Left = 480
TabIndex = 4
Top = 2400
Width = 3255
End
Begin VB.CommandButton Command3
Caption = "退货单"
Height = 615
Left = 480
TabIndex = 3
Top = 1680
Width = 3255
End
Begin VB.CommandButton Command2
Caption = "库存状况"
Height = 615
Left = 480
TabIndex = 2
Top = 960
Width = 3255
End
Begin VB.CommandButton Command1
BackColor = &H00C0E0FF&
Caption = "进货单"
Height = 615
Left = 480
TabIndex = 1
Top = 240
Width = 3255
End
End
End
Attribute VB_Name = "jinhuo"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
Load jinhuodan
jinhuodan.Show
End Sub
Private Sub Command4_Click()
Unload Me
End Sub
Private Sub Form_Load()
'set the window in the middle
Me.Left = (Screen.Width - Me.Width) / 2
Me.Top = (Screen.Height - Me.Height) / 2
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -