📄 住户物业缴费数据报表.frm
字号:
VERSION 5.00
Object = "{5E9E78A0-531B-11CF-91F6-C2863C385E30}#1.0#0"; "MSFLXGRD.OCX"
Begin VB.Form Form22
Caption = "住户物业缴费数据报表"
ClientHeight = 5715
ClientLeft = 60
ClientTop = 345
ClientWidth = 10110
Icon = "住户物业缴费数据报表.frx":0000
LinkTopic = "Form22"
ScaleHeight = 5715
ScaleWidth = 10110
StartUpPosition = 3 '窗口缺省
Begin VB.Frame Frame1
Height = 5415
Left = 240
TabIndex = 2
Top = 120
Width = 8175
Begin MSFlexGridLib.MSFlexGrid MSFlexGrid1
Bindings = "住户物业缴费数据报表.frx":08CA
Height = 5055
Left = 120
TabIndex = 3
Top = 240
Width = 7935
_ExtentX = 13996
_ExtentY = 8916
_Version = 393216
BackColor = 12648447
BackColorFixed = 16777215
BackColorBkg = 12640511
End
End
Begin VB.Data Data1
Caption = "Data1"
Connect = "Access"
DatabaseName = ""
DefaultCursorType= 0 '缺省游标
DefaultType = 2 '使用 ODBC
Exclusive = 0 'False
Height = 345
Left = 8640
Options = 0
ReadOnly = 0 'False
RecordsetType = 1 'Dynaset
RecordSource = ""
Top = 4800
Visible = 0 'False
Width = 1380
End
Begin VB.CommandButton Command1
Caption = "升 序"
Height = 375
Left = 8760
TabIndex = 1
Top = 1920
Width = 1095
End
Begin VB.CommandButton Command2
Caption = "降 序"
Height = 375
Left = 8760
TabIndex = 0
Top = 3120
Width = 1095
End
Begin VB.Timer Timer1
Interval = 1
Left = 8880
Top = 3960
End
Begin VB.Label Label1
Caption = "记录总数:"
Height = 255
Left = 8520
TabIndex = 5
Top = 360
Width = 1215
End
Begin VB.Label Label2
Height = 375
Left = 8520
TabIndex = 4
Top = 720
Width = 1335
End
End
Attribute VB_Name = "Form22"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
MSFlexGrid1.Sort = flexSortGenericAscending
End Sub
Private Sub Command2_Click()
MSFlexGrid1.Sort = flexSortGenericDescending
End Sub
Private Sub Form_Load()
Data1.DatabaseName = App.Path + "\db.mdb"
Data1.RecordSource = "物业收费管理"
Me.Width = 10230
Me.Height = 6120
End Sub
Private Sub Timer1_Timer()
Label2.Caption = Data1.Recordset.RecordCount
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -