📄 form13.frm
字号:
VERSION 5.00
Begin VB.Form Form13
Caption = "其它查询"
ClientHeight = 4815
ClientLeft = 60
ClientTop = 450
ClientWidth = 3615
LinkTopic = "Form13"
ScaleHeight = 4815
ScaleWidth = 3615
StartUpPosition = 3 '窗口缺省
Begin VB.Frame Frame1
Caption = "运动员、单项参赛人总数查询"
BeginProperty Font
Name = "宋体"
Size = 9
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 4575
Left = 120
TabIndex = 0
Top = 120
Width = 3375
Begin VB.ListBox List1
Height = 1140
Left = 240
TabIndex = 8
Top = 840
Width = 1335
End
Begin VB.Label Label11
BorderStyle = 1 'Fixed Single
BeginProperty Font
Name = "宋体"
Size = 9
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 2160
TabIndex = 12
Top = 2880
Width = 975
End
Begin VB.Label Label10
BorderStyle = 1 'Fixed Single
BeginProperty Font
Name = "宋体"
Size = 9
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 2160
TabIndex = 11
Top = 2280
Width = 975
End
Begin VB.Label Label9
Caption = "女运动员"
BeginProperty Font
Name = "宋体"
Size = 9
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 240
TabIndex = 10
Top = 2880
Width = 975
End
Begin VB.Label Label8
Caption = "男运动员"
BeginProperty Font
Name = "宋体"
Size = 9
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 240
TabIndex = 9
Top = 2280
Width = 975
End
Begin VB.Label Label7
Caption = "人数"
BeginProperty Font
Name = "宋体"
Size = 9
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = 2400
TabIndex = 7
Top = 480
Width = 615
End
Begin VB.Label Label6
BorderStyle = 1 'Fixed Single
BeginProperty Font
Name = "宋体"
Size = 9
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 2160
TabIndex = 6
Top = 4080
Width = 975
End
Begin VB.Label Label5
Caption = "所有参赛运动员"
BeginProperty Font
Name = "宋体"
Size = 9
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 240
TabIndex = 5
Top = 4080
Width = 1455
End
Begin VB.Label Label4
BorderStyle = 1 'Fixed Single
BeginProperty Font
Name = "宋体"
Size = 9
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 2160
TabIndex = 4
Top = 3480
Width = 975
End
Begin VB.Label Label3
Caption = "所有运动员"
BeginProperty Font
Name = "宋体"
Size = 9
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 240
TabIndex = 3
Top = 3480
Width = 1335
End
Begin VB.Label Label2
BorderStyle = 1 'Fixed Single
BeginProperty Font
Name = "宋体"
Size = 9
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 2160
TabIndex = 2
Top = 840
Width = 975
End
Begin VB.Label Label1
Caption = "参赛项目"
BeginProperty Font
Name = "宋体"
Size = 9
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = 360
TabIndex = 1
Top = 480
Width = 1215
End
End
End
Attribute VB_Name = "Form13"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Load()
On Error GoTo ErrMsg
'Dim sql1 As String
'Dim sql2 As String
Dim sql As String
sql = "select i_name4119 from 运动项目表4119"
Set adors = adocon.Execute(sql)
Do While adors.EOF = False
List1.AddItem adors(0)
adors.MoveNext
Loop
'sql1 = "select * from 运动队4119"
Set adors = adocon.Execute("select * from 运动队4119")
If adors.EOF Then
Label4.Caption = 0
Else
Set adors = adocon.Execute("select sum(t_hummers4119) from 运动队4119")
Label4.Caption = adors(0)
End If
Set adors = adocon.Execute("select count(a_no4119) from 运动项目及参赛表m4119")
If adors.BOF And adors.EOF Then
Label6.Caption = 0
Else
Label6.Caption = adors(0)
End If
'Label6.Caption = adors(0)
Set adors = adocon.Execute("select count(a_no4119) from 运动员4119 where a_sex4119='男'")
If adors.BOF And adors.EOF Then
Label10.Caption = 0
Else
Label10.Caption = adors(0)
End If
'Label10.Caption = adors(0)
Set adors = adocon.Execute("select count(a_no4119) from 运动员4119 where a_sex4119='女'")
If adors.BOF And adors.EOF Then
Label11.Caption = 0
Else
Label11.Caption = adors(0)
End If
'Label11.Caption = adors(0)
ErrMsg:
If Err.Number <> 0 Then
MsgBox Err.Number & Err.Description, vbOKOnly + vbCritical, "出错提示"
Exit Sub
End If
End Sub
Private Sub List1_Click()
On Error GoTo ErrMsg
Set adors = adocon.Execute("select count(a_no4119) from 运动项目及参赛表m4119 where " & List1.Text & "=1")
Label2.Caption = adors(0)
ErrMsg:
If Err.Number <> 0 Then
MsgBox Err.Number & Err.Description, vbOKOnly + vbCritical, "出错提示"
Exit Sub
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -