📄 form10.vb
字号:
Imports System.Data
Imports System.Data.SqlClient
Public Class Form10
Inherits System.Windows.Forms.Form
#Region " Windows 窗体设计器生成的代码 "
Public Sub New()
MyBase.New()
'该调用是 Windows 窗体设计器所必需的。
InitializeComponent()
'在 InitializeComponent() 调用之后添加任何初始化
End Sub
'窗体重写 dispose 以清理组件列表。
Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)
If disposing Then
If Not (components Is Nothing) Then
components.Dispose()
End If
End If
MyBase.Dispose(disposing)
End Sub
'Windows 窗体设计器所必需的
Private components As System.ComponentModel.IContainer
'注意: 以下过程是 Windows 窗体设计器所必需的
'可以使用 Windows 窗体设计器修改此过程。
'不要使用代码编辑器修改它。
Friend WithEvents GroupBox2 As System.Windows.Forms.GroupBox
Friend WithEvents Label9 As System.Windows.Forms.Label
Friend WithEvents Label8 As System.Windows.Forms.Label
Friend WithEvents Label5 As System.Windows.Forms.Label
Friend WithEvents Label4 As System.Windows.Forms.Label
Friend WithEvents DataGrid1 As System.Windows.Forms.DataGrid
Friend WithEvents GroupBox1 As System.Windows.Forms.GroupBox
Friend WithEvents Button1 As System.Windows.Forms.Button
Friend WithEvents Label1 As System.Windows.Forms.Label
Friend WithEvents DateTimePicker1 As System.Windows.Forms.DateTimePicker
<System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
Me.GroupBox2 = New System.Windows.Forms.GroupBox
Me.Label9 = New System.Windows.Forms.Label
Me.Label8 = New System.Windows.Forms.Label
Me.Label5 = New System.Windows.Forms.Label
Me.Label4 = New System.Windows.Forms.Label
Me.DataGrid1 = New System.Windows.Forms.DataGrid
Me.GroupBox1 = New System.Windows.Forms.GroupBox
Me.DateTimePicker1 = New System.Windows.Forms.DateTimePicker
Me.Button1 = New System.Windows.Forms.Button
Me.Label1 = New System.Windows.Forms.Label
Me.GroupBox2.SuspendLayout()
CType(Me.DataGrid1, System.ComponentModel.ISupportInitialize).BeginInit()
Me.GroupBox1.SuspendLayout()
Me.SuspendLayout()
'
'GroupBox2
'
Me.GroupBox2.Controls.Add(Me.Label9)
Me.GroupBox2.Controls.Add(Me.Label8)
Me.GroupBox2.Controls.Add(Me.Label5)
Me.GroupBox2.Controls.Add(Me.Label4)
Me.GroupBox2.Location = New System.Drawing.Point(8, 80)
Me.GroupBox2.Name = "GroupBox2"
Me.GroupBox2.Size = New System.Drawing.Size(448, 80)
Me.GroupBox2.TabIndex = 7
Me.GroupBox2.TabStop = False
Me.GroupBox2.Text = "统计信息"
'
'Label9
'
Me.Label9.Location = New System.Drawing.Point(376, 32)
Me.Label9.Name = "Label9"
Me.Label9.Size = New System.Drawing.Size(53, 22)
Me.Label9.TabIndex = 7
'
'Label8
'
Me.Label8.Location = New System.Drawing.Point(232, 32)
Me.Label8.Name = "Label8"
Me.Label8.Size = New System.Drawing.Size(120, 22)
Me.Label8.TabIndex = 6
Me.Label8.Text = "该日收入总金额为:"
'
'Label5
'
Me.Label5.Location = New System.Drawing.Point(152, 32)
Me.Label5.Name = "Label5"
Me.Label5.Size = New System.Drawing.Size(60, 22)
Me.Label5.TabIndex = 3
'
'Label4
'
Me.Label4.Location = New System.Drawing.Point(16, 32)
Me.Label4.Name = "Label4"
Me.Label4.Size = New System.Drawing.Size(120, 22)
Me.Label4.TabIndex = 2
Me.Label4.Text = "该日客流量人数为:"
'
'DataGrid1
'
Me.DataGrid1.BackColor = System.Drawing.SystemColors.Info
Me.DataGrid1.CaptionText = "日数据信息表"
Me.DataGrid1.DataMember = ""
Me.DataGrid1.HeaderForeColor = System.Drawing.SystemColors.ControlText
Me.DataGrid1.Location = New System.Drawing.Point(0, 168)
Me.DataGrid1.Name = "DataGrid1"
Me.DataGrid1.Size = New System.Drawing.Size(472, 184)
Me.DataGrid1.TabIndex = 6
'
'GroupBox1
'
Me.GroupBox1.Controls.Add(Me.DateTimePicker1)
Me.GroupBox1.Controls.Add(Me.Button1)
Me.GroupBox1.Controls.Add(Me.Label1)
Me.GroupBox1.Location = New System.Drawing.Point(7, 7)
Me.GroupBox1.Name = "GroupBox1"
Me.GroupBox1.Size = New System.Drawing.Size(449, 60)
Me.GroupBox1.TabIndex = 5
Me.GroupBox1.TabStop = False
Me.GroupBox1.Text = "统计条件"
'
'DateTimePicker1
'
Me.DateTimePicker1.CalendarMonthBackground = System.Drawing.SystemColors.Info
Me.DateTimePicker1.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.DateTimePicker1.Location = New System.Drawing.Point(200, 24)
Me.DateTimePicker1.Name = "DateTimePicker1"
Me.DateTimePicker1.Size = New System.Drawing.Size(160, 22)
Me.DateTimePicker1.TabIndex = 3
'
'Button1
'
Me.Button1.Location = New System.Drawing.Point(376, 22)
Me.Button1.Name = "Button1"
Me.Button1.Size = New System.Drawing.Size(62, 30)
Me.Button1.TabIndex = 2
Me.Button1.Text = "统计"
'
'Label1
'
Me.Label1.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Label1.Location = New System.Drawing.Point(7, 25)
Me.Label1.Name = "Label1"
Me.Label1.Size = New System.Drawing.Size(193, 23)
Me.Label1.TabIndex = 0
Me.Label1.Text = "请选择您要统计的年-月-日:"
'
'Form10
'
Me.AutoScaleBaseSize = New System.Drawing.Size(5, 13)
Me.BackColor = System.Drawing.Color.LightSteelBlue
Me.ClientSize = New System.Drawing.Size(472, 354)
Me.Controls.Add(Me.GroupBox2)
Me.Controls.Add(Me.DataGrid1)
Me.Controls.Add(Me.GroupBox1)
Me.MaximizeBox = False
Me.Name = "Form10"
Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen
Me.Text = "日数据统计"
Me.GroupBox2.ResumeLayout(False)
CType(Me.DataGrid1, System.ComponentModel.ISupportInitialize).EndInit()
Me.GroupBox1.ResumeLayout(False)
Me.ResumeLayout(False)
End Sub
#End Region
Dim cn As New SqlConnection("data source=(Local);initial catalog=酒店管理系统;uid=sa;pwd=;")
Dim cm As New SqlCommand("select * from 客人信息v", cn)
Dim da As New SqlDataAdapter(cm)
Dim ds As New DataSet
Public Sub CreateMyDateTimePicker()
' Set the MinDate and MaxDate.
DateTimePicker1.MinDate = New DateTime(1900, 1, 1)
DateTimePicker1.MaxDate = DateTime.Today
' Set the CustomFormat string.
DateTimePicker1.CustomFormat = " yyyy - MM-dd"
DateTimePicker1.Format = DateTimePickerFormat.Custom
' Show the CheckBox and display the control as an up-down control.
DateTimePicker1.ShowCheckBox = False
DateTimePicker1.ShowUpDown = False
End Sub 'CreateMyDateTimePicker
Private Sub Form10_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
cn.Open()
da.Fill(ds, "客人信息v")
cn.Close()
DataGrid1.DataSource = ds.Tables("客人信息v")
If ds.Tables("客人信息v").Rows.Count <> 0 Then
DateTimePicker1.Text = ds.Tables("客人信息v").Rows(0).Item("入住日期")
End If
End Sub
Private Sub DateTimePicker1_ValueChanged1(ByVal sender As Object, ByVal e As System.EventArgs) Handles DateTimePicker1.ValueChanged
Try
CreateMyDateTimePicker()
cm.CommandType = CommandType.Text
cm.CommandText = "select * from 客人信息v where 入住日期='" & DateTimePicker1.Text & "'"
da.SelectCommand.CommandText = "select * from 客人信息v where 入住日期='" & DateTimePicker1.Text & "'"
ds.Clear()
cn.Open()
da.Fill(ds, "客人信息v")
cn.Close()
Label9.Text = ""
Label5.Text = ""
Catch ex As Exception
cn.Close()
MsgBox(ex.Message)
End Try
End Sub
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Label5.Text = CType(DataGrid1.DataSource, DataTable).Rows.Count
Dim i, total As Integer
For i = 0 To ds.Tables("客人信息v").Rows.Count - 1
total += CInt(ds.Tables("客人信息v").Rows(i).Item("押金"))
Next
Label9.Text = total.ToString & "元"
End Sub
End Class
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -