📄 frmhy.frm
字号:
VERSION 5.00
Begin VB.Form FrmHY
BackColor = &H00C0C000&
BorderStyle = 1 'Fixed Single
Caption = "东方库存管理系统"
ClientHeight = 3030
ClientLeft = 45
ClientTop = 330
ClientWidth = 4170
ForeColor = &H000000FF&
Icon = "FrmHY.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 3030
ScaleWidth = 4170
StartUpPosition = 2 'CenterScreen
Begin VB.PictureBox Picture1
Appearance = 0 'Flat
BackColor = &H00FF0000&
ForeColor = &H00000000&
Height = 375
Left = 0
ScaleHeight = 345
ScaleWidth = 4185
TabIndex = 0
Top = 0
Width = 4215
Begin VB.Label Label5
BackStyle = 0 'Transparent
Caption = "东方软件有限公司"
BeginProperty Font
Name = "楷体_GB2312"
Size = 10.5
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H0000FFFF&
Height = 255
Left = 1080
TabIndex = 1
Top = 120
Width = 2055
End
End
Begin VB.Label Label3
BackColor = &H00C0C000&
Caption = "版权所有:东方软件有限公司 2003/5/11/济南"
ForeColor = &H000000C0&
Height = 255
Left = 240
TabIndex = 5
Top = 2520
Width = 3735
End
Begin VB.Label Label2
BackStyle = 0 'Transparent
Caption = "版本:V1.0.1"
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000FF&
Height = 375
Left = 1320
TabIndex = 4
Top = 1920
Width = 1455
End
Begin VB.Label Label1
BackStyle = 0 'Transparent
Caption = "东方库存管理系统"
BeginProperty Font
Name = "宋体"
Size = 21.75
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H0000FFFF&
Height = 615
Left = 240
TabIndex = 3
Top = 1080
Width = 3735
End
Begin VB.Label Label4
BackStyle = 0 'Transparent
Caption = "东方库存管理系统"
BeginProperty Font
Name = "宋体"
Size = 21.75
Charset = 134
Weight = 700
Underline = 0 'False
Italic = -1 'True
Strikethrough = 0 'False
EndProperty
Height = 615
Left = 120
TabIndex = 2
Top = 960
Width = 3975
End
End
Attribute VB_Name = "FrmHY"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Initialize()
If App.PrevInstance Then
MsgBox "本程序正在运行,这个副本将自动结束!"
End
End If
End Sub
Private Sub Form_Load()
Call PutWindowOnTop(Me) '调用窗体始终保持最前
Label4.Top = Label1.Top + 50
Label4.Left = Label1.Left + 50
End Sub
Private Sub Form_Unload(Cancel As Integer)
Dim i As Integer
i = Me.Height
While i >= Picture1.Height
i = i - 10
If i > Picture1.Height Then
Me.Height = i
Else
Me.Height = Picture1.Height
End If
DoEvents
Wend
i = Me.Top
i = Me.Top
While i > 0
Me.Move Me.Left, i, Me.Width, Me.Height
i = i - 10
DoEvents
Wend
i = Me.Left
While i < Screen.Width
Me.Move i, 0, Me.Width, Me.Height
i = i + 20
DoEvents
Wend
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -