📄 bossinfquery.frm
字号:
VERSION 5.00
Begin VB.Form FormBossInfQuery
Caption = "Form1"
ClientHeight = 7455
ClientLeft = 60
ClientTop = 345
ClientWidth = 4800
LinkTopic = "Form1"
ScaleHeight = 7455
ScaleWidth = 4800
StartUpPosition = 3 '窗口缺省
Begin VB.CommandButton Command2
Caption = "去重复"
Height = 375
Left = 1320
TabIndex = 3
Top = 6840
Width = 1095
End
Begin VB.CommandButton Command1
Caption = "关闭"
Height = 375
Left = 2640
TabIndex = 2
Top = 6840
Width = 1335
End
Begin VB.ListBox List1
BackColor = &H00808080&
ForeColor = &H0080FFFF&
Height = 6000
Left = 480
TabIndex = 1
Top = 720
Width = 3735
End
Begin VB.Label Label1
AutoSize = -1 'True
Caption = "BOSS信息详细显示"
BeginProperty Font
Name = "隶书"
Size = 14.25
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000080FF&
Height = 285
Left = 1200
TabIndex = 0
Top = 240
Width = 2400
End
End
Attribute VB_Name = "FormBossInfQuery"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
FormBossRemainTime.Show
FormBossInfQuery.Hide
End Sub
Private Sub Command2_Click()
'删除重复项目
For i = 0 To List1.ListCount - 1
For j = 0 To List1.ListCount - 1
If i = j Then GoTo tt
If List1.List(j) = List1.List(i) Then
List1.RemoveItem j
End If
tt: Next j
Next i
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -