frmMonthTotal.vb
上传用户:wj57717022
上传日期:2014-12-16
资源大小:4093k
文件大小:6k
源码类别:

医药行业

开发平台:

Visual Basic

  1. Public Class frmMonthTotal
  2.     Inherits System.Windows.Forms.Form
  3. #Region " Windows 窗体设计器生成的代码 "
  4.     Public Sub New()
  5.         MyBase.New()
  6.         '该调用是 Windows 窗体设计器所必需的。
  7.         InitializeComponent()
  8.         '在 InitializeComponent() 调用之后添加任何初始化
  9.     End Sub
  10.     '窗体重写 dispose 以清理组件列表。
  11.     Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)
  12.         If disposing Then
  13.             If Not (components Is Nothing) Then
  14.                 components.Dispose()
  15.             End If
  16.         End If
  17.         MyBase.Dispose(disposing)
  18.     End Sub
  19.     'Windows 窗体设计器所必需的
  20.     Private components As System.ComponentModel.IContainer
  21.     '注意: 以下过程是 Windows 窗体设计器所必需的
  22.     '可以使用 Windows 窗体设计器修改此过程。
  23.     '不要使用代码编辑器修改它。
  24.     Friend WithEvents GroupBox1 As System.Windows.Forms.GroupBox
  25.     Friend WithEvents Label1 As System.Windows.Forms.Label
  26.     Friend WithEvents Label2 As System.Windows.Forms.Label
  27.     Friend WithEvents txtDate As System.Windows.Forms.TextBox
  28.     Friend WithEvents dgview As System.Windows.Forms.DataGrid
  29.     Friend WithEvents Button2 As System.Windows.Forms.Button
  30.     Friend WithEvents Button1 As System.Windows.Forms.Button
  31.     <System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
  32.         Me.GroupBox1 = New System.Windows.Forms.GroupBox
  33.         Me.Button2 = New System.Windows.Forms.Button
  34.         Me.Button1 = New System.Windows.Forms.Button
  35.         Me.Label2 = New System.Windows.Forms.Label
  36.         Me.txtDate = New System.Windows.Forms.TextBox
  37.         Me.Label1 = New System.Windows.Forms.Label
  38.         Me.dgview = New System.Windows.Forms.DataGrid
  39.         Me.GroupBox1.SuspendLayout()
  40.         CType(Me.dgview, System.ComponentModel.ISupportInitialize).BeginInit()
  41.         Me.SuspendLayout()
  42.         '
  43.         'GroupBox1
  44.         '
  45.         Me.GroupBox1.Controls.Add(Me.Button2)
  46.         Me.GroupBox1.Controls.Add(Me.Button1)
  47.         Me.GroupBox1.Controls.Add(Me.Label2)
  48.         Me.GroupBox1.Controls.Add(Me.txtDate)
  49.         Me.GroupBox1.Controls.Add(Me.Label1)
  50.         Me.GroupBox1.Dock = System.Windows.Forms.DockStyle.Top
  51.         Me.GroupBox1.ForeColor = System.Drawing.Color.ForestGreen
  52.         Me.GroupBox1.Location = New System.Drawing.Point(0, 0)
  53.         Me.GroupBox1.Name = "GroupBox1"
  54.         Me.GroupBox1.Size = New System.Drawing.Size(768, 56)
  55.         Me.GroupBox1.TabIndex = 0
  56.         Me.GroupBox1.TabStop = False
  57.         '
  58.         'Button2
  59.         '
  60.         Me.Button2.FlatStyle = System.Windows.Forms.FlatStyle.Popup
  61.         Me.Button2.Location = New System.Drawing.Point(664, 24)
  62.         Me.Button2.Name = "Button2"
  63.         Me.Button2.TabIndex = 6
  64.         Me.Button2.Text = "打印"
  65.         '
  66.         'Button1
  67.         '
  68.         Me.Button1.FlatStyle = System.Windows.Forms.FlatStyle.Popup
  69.         Me.Button1.Location = New System.Drawing.Point(592, 24)
  70.         Me.Button1.Name = "Button1"
  71.         Me.Button1.TabIndex = 5
  72.         Me.Button1.Text = "查询"
  73.         '
  74.         'Label2
  75.         '
  76.         Me.Label2.AutoSize = True
  77.         Me.Label2.FlatStyle = System.Windows.Forms.FlatStyle.Popup
  78.         Me.Label2.Location = New System.Drawing.Point(104, 32)
  79.         Me.Label2.Name = "Label2"
  80.         Me.Label2.Size = New System.Drawing.Size(307, 17)
  81.         Me.Label2.TabIndex = 4
  82.         Me.Label2.Text = "注意:请按""200101""的格式在查询框按年月输入查询值!"
  83.         '
  84.         'txtDate
  85.         '
  86.         Me.txtDate.Location = New System.Drawing.Point(456, 24)
  87.         Me.txtDate.Name = "txtDate"
  88.         Me.txtDate.TabIndex = 3
  89.         Me.txtDate.Text = ""
  90.         '
  91.         'Label1
  92.         '
  93.         Me.Label1.AutoSize = True
  94.         Me.Label1.ForeColor = System.Drawing.Color.Black
  95.         Me.Label1.Location = New System.Drawing.Point(416, 32)
  96.         Me.Label1.Name = "Label1"
  97.         Me.Label1.Size = New System.Drawing.Size(42, 17)
  98.         Me.Label1.TabIndex = 2
  99.         Me.Label1.Text = "月份:"
  100.         '
  101.         'dgview
  102.         '
  103.         Me.dgview.DataMember = ""
  104.         Me.dgview.Dock = System.Windows.Forms.DockStyle.Fill
  105.         Me.dgview.HeaderForeColor = System.Drawing.SystemColors.ControlText
  106.         Me.dgview.Location = New System.Drawing.Point(0, 56)
  107.         Me.dgview.Name = "dgview"
  108.         Me.dgview.Size = New System.Drawing.Size(768, 388)
  109.         Me.dgview.TabIndex = 1
  110.         '
  111.         'frmMonthTotal
  112.         '
  113.         Me.AutoScaleBaseSize = New System.Drawing.Size(6, 14)
  114.         Me.ClientSize = New System.Drawing.Size(768, 444)
  115.         Me.Controls.Add(Me.dgview)
  116.         Me.Controls.Add(Me.GroupBox1)
  117.         Me.Name = "frmMonthTotal"
  118.         Me.Text = "每月进销存查询统计"
  119.         Me.WindowState = System.Windows.Forms.FormWindowState.Maximized
  120.         Me.GroupBox1.ResumeLayout(False)
  121.         CType(Me.dgview, System.ComponentModel.ISupportInitialize).EndInit()
  122.         Me.ResumeLayout(False)
  123.     End Sub
  124. #End Region
  125.     Public lsweb As New jxcmanage
  126.     Private Sub frmMonthTotal_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
  127.     End Sub
  128.     Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)
  129.         
  130.     End Sub
  131.     Private Sub Button1_Click_1(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
  132.         If txtDate.Text = String.Empty Then
  133.             MessageBox.Show("请输入查询值!", "提示", MessageBoxButtons.OK)
  134.         Else
  135.             Try
  136.                 Dim dv As DataView
  137.                 Dim dtOrder As DataTable = lsweb.runSql("exec sp_total '" & txtDate.Text.Trim & "'").Tables(0)
  138.                 dv = dtOrder.DefaultView
  139.                 dgview.DataSource = dv
  140.             Catch ex As Exception
  141.                 Throw New ExecutionEngineException
  142.             End Try
  143.         End If
  144.     End Sub
  145. End Class