?? frmerrrecord.frm
字號:
VERSION 5.00
Object = "{B0475000-7740-11D1-BDC3-0020AF9F8E6E}#6.0#0"; "TTF16.OCX"
Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "MSCOMCTL.OCX"
Begin VB.Form frmErrRecord
Caption = "未寫入記錄列表"
ClientHeight = 4755
ClientLeft = 60
ClientTop = 345
ClientWidth = 10080
BeginProperty Font
Name = "宋體"
Size = 9
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Icon = "frmErrRecord.frx":0000
LinkTopic = "Form1"
ScaleHeight = 4755
ScaleWidth = 10080
StartUpPosition = 3 'Windows Default
Begin MSComctlLib.ListView LV1
Height = 4740
Left = 0
TabIndex = 1
Top = 15
Width = 1905
_ExtentX = 3360
_ExtentY = 8361
View = 3
LabelEdit = 1
LabelWrap = -1 'True
HideSelection = 0 'False
_Version = 393217
ForeColor = -2147483640
BackColor = -2147483643
BorderStyle = 1
Appearance = 1
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "宋體"
Size = 9.75
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
NumItems = 1
BeginProperty ColumnHeader(1) {BDD1F052-858B-11D1-B16A-00C0F0283628}
Text = "表名"
Object.Width = 5292
EndProperty
End
Begin TTF160Ctl.F1Book F1
Height = 4710
Index = 0
Left = 1935
TabIndex = 0
Top = 30
Visible = 0 'False
Width = 8130
_ExtentX = 14340
_ExtentY = 8308
_0 = $"frmErrRecord.frx":0442
_1 = $"frmErrRecord.frx":084B
_2 = $"frmErrRecord.frx":0C54
_3 = $"frmErrRecord.frx":105D
_4 = $"frmErrRecord.frx":1466
_count = 5
_ver = 2
End
End
Attribute VB_Name = "frmErrRecord"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub Form_Resize()
Dim I As Integer
Dim J As Integer
LV1.Left = Me.ScaleLeft
LV1.Top = Me.ScaleTop
LV1.Height = Me.ScaleHeight
For I = 0 To F1.UBound
F1(I).Left = LV1.Left + LV1.Width + 10
F1(I).Top = Me.ScaleTop
F1(I).Height = Me.ScaleHeight
J = Me.ScaleWidth - F1(I).Left
If J < 0 Then J = 0
F1(I).Width = J
Next
End Sub
Private Sub LV1_ItemClick(ByVal Item As MSComctlLib.ListItem)
Dim I As Integer
Dim intIndex As Integer
intIndex = Val(Mid(Item.Key, 2))
For I = 1 To F1.UBound
If I <> intIndex Then
F1(I).Visible = False
End If
Next
F1(intIndex).Visible = True
End Sub
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -