📄 form4welcome.frm
字号:
VERSION 5.00
Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "MSCOMCTL.OCX"
Begin VB.Form Form4welcome
BackColor = &H00FFFFC0&
Caption = "欢迎界面"
ClientHeight = 10875
ClientLeft = 60
ClientTop = 450
ClientWidth = 13650
FillColor = &H00FFFFC0&
LinkTopic = "Form2"
Picture = "Form4welcome.frx":0000
ScaleHeight = 10875
ScaleWidth = 13650
StartUpPosition = 3 '窗口缺省
WindowState = 2 'Maximized
Begin MSComctlLib.StatusBar StatusBar1
Align = 2 'Align Bottom
Height = 735
Left = 0
TabIndex = 7
Top = 10140
Width = 13650
_ExtentX = 24077
_ExtentY = 1296
_Version = 393216
BeginProperty Panels {8E3867A5-8586-11D1-B16A-00C0F0283628}
NumPanels = 5
BeginProperty Panel1 {8E3867AB-8586-11D1-B16A-00C0F0283628}
Object.Width = 3881
MinWidth = 3881
Text = "制作人:孙花敏"
TextSave = "制作人:孙花敏"
EndProperty
BeginProperty Panel2 {8E3867AB-8586-11D1-B16A-00C0F0283628}
Object.Width = 4234
MinWidth = 4234
Text = "专业:地理信息系统"
TextSave = "专业:地理信息系统"
EndProperty
BeginProperty Panel3 {8E3867AB-8586-11D1-B16A-00C0F0283628}
Object.Width = 3528
MinWidth = 3528
Text = "班级:01-1"
TextSave = "班级:01-1"
EndProperty
BeginProperty Panel4 {8E3867AB-8586-11D1-B16A-00C0F0283628}
Object.Width = 3881
MinWidth = 3881
Text = "学号:20012854"
TextSave = "学号:20012854"
EndProperty
BeginProperty Panel5 {8E3867AB-8586-11D1-B16A-00C0F0283628}
Object.Width = 4410
MinWidth = 4410
Text = "指导老师:曾玉凤,文广超"
TextSave = "指导老师:曾玉凤,文广超"
EndProperty
EndProperty
End
Begin VB.Timer Timer2
Interval = 100
Left = 3120
Top = 3240
End
Begin VB.Timer Timer1
Interval = 50
Left = 6960
Top = 3360
End
Begin VB.CommandButton Command2
Caption = "退出"
BeginProperty Font
Name = "宋体"
Size = 15
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 4440
TabIndex = 6
Top = 9360
Width = 855
End
Begin VB.CommandButton Command1
BackColor = &H00FF0000&
Caption = "进入"
BeginProperty Font
Name = "宋体"
Size = 15
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 4440
TabIndex = 5
Top = 8640
Width = 855
End
Begin VB.TextBox Text2
BackColor = &H00C0C0C0&
ForeColor = &H00000000&
Height = 375
Left = 1800
TabIndex = 4
Top = 9360
Width = 1815
End
Begin VB.TextBox Text1
BackColor = &H00C0C0C0&
Height = 375
Left = 1800
TabIndex = 2
Top = 8640
Width = 1815
End
Begin VB.Label Label3
BackColor = &H00808080&
Caption = "密码"
BeginProperty Font
Name = "宋体"
Size = 15
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 600
TabIndex = 3
Top = 9360
Width = 975
End
Begin VB.Label Label2
BackColor = &H00808080&
Caption = "用户名"
BeginProperty Font
Name = "宋体"
Size = 15
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 600
TabIndex = 1
Top = 8640
Width = 975
End
Begin VB.Label Label1
BackColor = &H00FFFFC0&
Caption = "欢迎进入河南省主体功能区区划系统"
BeginProperty Font
Name = "宋体"
Size = 24
Charset = 134
Weight = 700
Underline = 0 'False
Italic = -1 'True
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 1320
TabIndex = 0
Top = 1320
Width = 8055
End
End
Attribute VB_Name = "Form4welcome"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub Command1_Click()
frmmain.Show
End Sub
Private Sub Command2_Click()
Unload Me
End Sub
Private Sub Timer1_Timer()
Dim Subthisstep As Long
Subthisstep = 100
Label1.Left = Label1.Left - Subthisstep
If (Label1.Left) <= 0 Then
Label1.Left = Form4welcome.Width
End If
End Sub
Private Sub Timer2_Timer()
If Label1.ForeColor = vbRed Then
Label1.ForeColor = vbGreen
Else
Label1.ForeColor = vbRed
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -