form1.frm
来自「医院工资信息管理系统 用VB语言编写的工资管理系统」· FRM 代码 · 共 85 行
FRM
85 行
VERSION 5.00
Begin VB.Form Form1
Caption = "医院工资管理系统"
ClientHeight = 7455
ClientLeft = 2445
ClientTop = 1860
ClientWidth = 10785
Icon = "Form1.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
ScaleHeight = 7455
ScaleWidth = 10785
Begin VB.Timer Timer1
Interval = 2000
Left = 9840
Top = 7920
End
Begin VB.Label Label3
Alignment = 2 'Center
BackStyle = 0 'Transparent
Caption = "版权所有:刘夏毓、陈超聪、吴国彪"
BeginProperty Font
Name = "楷体_GB2312"
Size = 15
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000C0&
Height = 495
Left = 5280
TabIndex = 1
Top = 6360
Width = 4815
End
Begin VB.Label welcome
Alignment = 2 'Center
BackColor = &H8000000A&
BackStyle = 0 'Transparent
Caption = "欢迎使用医院工资管理系统"
BeginProperty Font
Name = "宋体"
Size = 24.75
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 975
Left = 1800
TabIndex = 0
Top = 1560
Width = 7080
WordWrap = -1 'True
End
Begin VB.Image Image1
Height = 11520
Left = -600
MouseIcon = "Form1.frx":0442
Picture = "Form1.frx":0884
Top = -480
Width = 15360
End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Image1_Click()
Form3.Show 1
End Sub
Private Sub Timer1_Timer()
a = Rnd * 255
b = Rnd * 255
c = Rnd * 255
welcome.Font = "隶书"
welcome.FontSize = "25"
welcome.ForeColor = RGB(a, b, c)
End Sub
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?