📄 frmemployee.frm
字号:
VERSION 5.00
Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "MSCOMCTL.OCX"
Begin VB.Form RoomStatus
BorderStyle = 1 'Fixed Single
Caption = "Room Status"
ClientHeight = 6885
ClientLeft = 45
ClientTop = 435
ClientWidth = 9165
BeginProperty Font
Name = "Arial"
Size = 9
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Icon = "frmEmployee.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 6885
ScaleWidth = 9165
StartUpPosition = 2 'CenterScreen
Begin VB.Frame Frame1
Height = 6615
Left = 120
TabIndex = 0
Top = 120
Width = 8895
Begin MSComctlLib.ImageList ImageList1
Left = 840
Top = 4680
_ExtentX = 1005
_ExtentY = 1005
BackColor = -2147483643
ImageWidth = 16
ImageHeight = 16
MaskColor = 12632256
_Version = 393216
BeginProperty Images {2C247F25-8591-11D1-B16A-00C0F0283628}
NumListImages = 1
BeginProperty ListImage1 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmEmployee.frx":0BC2
Key = ""
EndProperty
EndProperty
End
Begin MSComctlLib.ListView lvroom
Height = 6255
Left = 120
TabIndex = 1
Top = 240
WhatsThisHelpID = 7
Width = 8655
_ExtentX = 15266
_ExtentY = 11033
View = 3
MultiSelect = -1 'True
LabelWrap = -1 'True
HideSelection = -1 'True
FullRowSelect = -1 'True
GridLines = -1 'True
TextBackground = -1 'True
_Version = 393217
SmallIcons = "ImageList1"
ForeColor = -2147483640
BackColor = -2147483643
Appearance = 1
NumItems = 4
BeginProperty ColumnHeader(1) {BDD1F052-858B-11D1-B16A-00C0F0283628}
Text = "Room No."
Object.Width = 3175
EndProperty
BeginProperty ColumnHeader(2) {BDD1F052-858B-11D1-B16A-00C0F0283628}
SubItemIndex = 1
Text = "Type"
Object.Width = 5292
EndProperty
BeginProperty ColumnHeader(3) {BDD1F052-858B-11D1-B16A-00C0F0283628}
SubItemIndex = 2
Text = "Rate"
Object.Width = 3175
EndProperty
BeginProperty ColumnHeader(4) {BDD1F052-858B-11D1-B16A-00C0F0283628}
SubItemIndex = 3
Text = "Status"
Object.Width = 3069
EndProperty
End
End
End
Attribute VB_Name = "RoomStatus"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Load()
check_RS
rs.Open "select * from room order by room_no asc", Cnn
fill
End Sub
Public Sub fill()
Dim x As Integer
lvroom.ListItems.Clear
While Not rs.EOF
Set lst = lvroom.ListItems.Add(, , rs(0), , 1)
For x = 1 To 3
lst.SubItems(x) = rs(x)
' If rs.Fields(3) = "OCCUPIED" Then lst.SubItems(3) = "OCCUPIED"
Next x
rs.MoveNext
Wend
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -