?? 住戶物業繳費數據報表.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
'Download by http://www.codefans.net
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 + -