📄 frmsplash.frm
字号:
VERSION 5.00
Begin VB.Form FrmSplash
BorderStyle = 0 'None
Caption = "Form1"
ClientHeight = 6240
ClientLeft = 0
ClientTop = 0
ClientWidth = 5970
Icon = "FrmSplash.frx":0000
LinkTopic = "Form1"
Picture = "FrmSplash.frx":0CCA
ScaleHeight = 6240
ScaleWidth = 5970
ShowInTaskbar = 0 'False
StartUpPosition = 2 'CenterScreen
Begin VB.Timer Timer1
Interval = 3000
Left = 240
Top = 2520
End
Begin VB.Label Label4
Alignment = 2 'Center
BackStyle = 0 'Transparent
Caption = "Rewarded as best project"
BeginProperty Font
Name = "Arial"
Size = 48
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H0000FFFF&
Height = 2535
Left = -120
TabIndex = 5
Top = 0
Width = 6135
End
Begin VB.Label lblCompany
Alignment = 2 'Center
BackStyle = 0 'Transparent
Caption = "Institute"
BeginProperty Font
Name = "Arial"
Size = 21.75
Charset = 0
Weight = 700
Underline = 0 'False
Italic = -1 'True
Strikethrough = 0 'False
EndProperty
ForeColor = &H0000FFFF&
Height = 495
Left = -720
TabIndex = 4
Top = 2880
Width = 7095
End
Begin VB.Label lblLicenseTo
Alignment = 2 'Center
BackStyle = 0 'Transparent
Caption = "Ramakrishna Mission Viveka Nanda Cultural Centre"
BeginProperty Font
Name = "Arial"
Size = 18
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FFFF80&
Height = 975
Left = 120
TabIndex = 3
Top = 3360
Width = 5775
End
Begin VB.Image Image2
Height = 3000
Left = 0
Picture = "FrmSplash.frx":4F98
Top = -720
Width = 3750
End
Begin VB.Shape Shape1
BorderColor = &H80000003&
FillColor = &H00FFFFFF&
Height = 6210
Left = 15
Top = 15
Width = 5940
End
Begin VB.Label Label1
Alignment = 2 'Center
BackStyle = 0 'Transparent
Caption = "Welcome to"
BeginProperty Font
Name = "MS Sans Serif"
Size = 13.5
Charset = 0
Weight = 400
Underline = 0 'False
Italic = -1 'True
Strikethrough = 0 'False
EndProperty
ForeColor = &H0080C0FF&
Height = 375
Left = 4800
TabIndex = 2
Top = 1320
Width = 5655
End
Begin VB.Image Image1
Height = 2055
Left = 0
Picture = "FrmSplash.frx":65A6
Stretch = -1 'True
Top = 4200
Width = 5970
End
Begin VB.Label Label3
Alignment = 2 'Center
BackStyle = 0 'Transparent
Caption = "HOTEL MANAGEMENT SYSTEM"
BeginProperty Font
Name = "Times New Roman"
Size = 20.25
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H0000FFFF&
Height = 855
Left = 5880
TabIndex = 1
Top = 3240
Width = 5655
End
Begin VB.Label Label2
Alignment = 2 'Center
BackStyle = 0 'Transparent
Caption = "HOTEL MANAGEMENT SYSTEM"
BeginProperty Font
Name = "Times New Roman"
Size = 20.25
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000C0&
Height = 855
Left = 5760
TabIndex = 0
Top = 3360
Width = 5655
End
End
Attribute VB_Name = "FrmSplash"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Load()
On Error Resume Next
MkDir "D:\HOTEL"
MkDir "D:\HOTEL\CUSTOMER"
MkDir "D:\HOTEL\PRINT"
MkDir "D:\HOTEL\STAFF"
MkDir "D:\hotel\ITEMS"
MkDir "D:\hotel\USER"
MkDir "D:\hotel\ROOMS"
MkDir "D:\hotel\RESTO"
Call CUSTOMER("d:\hotel\CUSTOMER\customer.mdb")
Call STAFF("d:\hotel\STAFF\STAFF.mdb")
Call PRINTDB("d:\hotel\PRINT\PRINT.mdb")
Call ITEMS("d:\hotel\ITEMS\ITEMS.mdb")
Call USERDB("d:\hotel\USER\USER.mdb")
Call ROOMS("d:\hotel\ROOMS\ROOMS.mdb")
Call RESTO("d:\hotel\RESTO\RESTO.mdb")
End Sub
Private Sub Timer1_Timer()
FrmLogin.Show
Unload Me
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -