?? mainform.designer.vb
字號:
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Public Class MainForm
Inherits System.Windows.Forms.Form
'Form overrides dispose to clean up the component list.
<System.Diagnostics.DebuggerNonUserCode()> _
Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)
If disposing AndAlso components IsNot Nothing Then
components.Dispose()
End If
MyBase.Dispose(disposing)
End Sub
'Required by the Windows Form Designer
Private components As System.ComponentModel.IContainer
'NOTE: The following procedure is required by the Windows Form Designer
'It can be modified using the Windows Form Designer.
'Do not modify it using the code editor.
<System.Diagnostics.DebuggerStepThrough()> _
Private Sub InitializeComponent()
Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(MainForm))
Me.pgeCreateSprocs = New System.Windows.Forms.TabPage
Me.Label2 = New System.Windows.Forms.Label
Me.btnCreateDatabase = New System.Windows.Forms.Button
Me.tabApp = New System.Windows.Forms.TabControl
Me.pgeNoParams = New System.Windows.Forms.TabPage
Me.txtTenMostExpProds = New System.Windows.Forms.TextBox
Me.Label1 = New System.Windows.Forms.Label
Me.getListOfFirstNames = New System.Windows.Forms.Button
Me.pgeInputParam = New System.Windows.Forms.TabPage
Me.productsGrid = New System.Windows.Forms.DataGridView
Me.Label4 = New System.Windows.Forms.Label
Me.btnGetEmployees = New System.Windows.Forms.Button
Me.cboCategoriesInputParam = New System.Windows.Forms.ComboBox
Me.Label3 = New System.Windows.Forms.Label
Me.pgeAllTypes = New System.Windows.Forms.TabPage
Me.lblProductCountAndAvgPrice = New System.Windows.Forms.Label
Me.Label5 = New System.Windows.Forms.Label
Me.btnGetCountInCountry = New System.Windows.Forms.Button
Me.cboCountries = New System.Windows.Forms.ComboBox
Me.Label6 = New System.Windows.Forms.Label
Me.Label7 = New System.Windows.Forms.Label
Me.MenuStrip1 = New System.Windows.Forms.MenuStrip
Me.fileToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem
Me.exitToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem
Me.pgeCreateSprocs.SuspendLayout()
Me.tabApp.SuspendLayout()
Me.pgeNoParams.SuspendLayout()
Me.pgeInputParam.SuspendLayout()
CType(Me.productsGrid, System.ComponentModel.ISupportInitialize).BeginInit()
Me.pgeAllTypes.SuspendLayout()
Me.MenuStrip1.SuspendLayout()
Me.SuspendLayout()
'
'pgeCreateSprocs
'
Me.pgeCreateSprocs.AccessibleDescription = "TabPage with text ""Create Sprocs"""
Me.pgeCreateSprocs.AccessibleName = "Create Sprocs tab"
Me.pgeCreateSprocs.Controls.Add(Me.Label2)
Me.pgeCreateSprocs.Controls.Add(Me.btnCreateDatabase)
Me.pgeCreateSprocs.Location = New System.Drawing.Point(4, 22)
Me.pgeCreateSprocs.Name = "pgeCreateSprocs"
Me.pgeCreateSprocs.Size = New System.Drawing.Size(440, 334)
Me.pgeCreateSprocs.TabIndex = 0
Me.pgeCreateSprocs.Text = "Create Sprocs"
Me.pgeCreateSprocs.UseVisualStyleBackColor = False
'
'Label2
'
Me.Label2.AccessibleDescription = "Label with description of Create Sprocs example"
Me.Label2.AccessibleName = "Create Sprocs intro"
Me.Label2.ImeMode = System.Windows.Forms.ImeMode.NoControl
Me.Label2.Location = New System.Drawing.Point(8, 8)
Me.Label2.Name = "Label2"
Me.Label2.Size = New System.Drawing.Size(424, 51)
Me.Label2.TabIndex = 1
Me.Label2.Text = "Click the button to create the SQL Server StoredProceduresDemo Database that are " & _
"required for this demo. " & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "If it already exist, the database and all the objects " & _
"will be dropped and recreated."
'
'btnCreateDatabase
'
Me.btnCreateDatabase.AccessibleDescription = "Button with text ""Create DataBase"""
Me.btnCreateDatabase.AccessibleName = "Create Sprocs"
Me.btnCreateDatabase.ImeMode = System.Windows.Forms.ImeMode.NoControl
Me.btnCreateDatabase.Location = New System.Drawing.Point(159, 62)
Me.btnCreateDatabase.Name = "btnCreateDatabase"
Me.btnCreateDatabase.Size = New System.Drawing.Size(104, 23)
Me.btnCreateDatabase.TabIndex = 0
Me.btnCreateDatabase.Text = "&Create Database"
'
'tabApp
'
Me.tabApp.AccessibleDescription = "TabControl for the entire application"
Me.tabApp.AccessibleName = "Tab Control"
Me.tabApp.Controls.Add(Me.pgeCreateSprocs)
Me.tabApp.Controls.Add(Me.pgeNoParams)
Me.tabApp.Controls.Add(Me.pgeInputParam)
Me.tabApp.Controls.Add(Me.pgeAllTypes)
Me.tabApp.ItemSize = New System.Drawing.Size(79, 18)
Me.tabApp.Location = New System.Drawing.Point(24, 62)
Me.tabApp.Name = "tabApp"
Me.tabApp.SelectedIndex = 0
Me.tabApp.Size = New System.Drawing.Size(448, 360)
Me.tabApp.TabIndex = 6
'
'pgeNoParams
'
Me.pgeNoParams.AccessibleDescription = "TabPage with text ""No Params"""
Me.pgeNoParams.AccessibleName = "No Params tab"
Me.pgeNoParams.Controls.Add(Me.txtTenMostExpProds)
Me.pgeNoParams.Controls.Add(Me.Label1)
Me.pgeNoParams.Controls.Add(Me.getListOfFirstNames)
Me.pgeNoParams.Location = New System.Drawing.Point(4, 22)
Me.pgeNoParams.Name = "pgeNoParams"
Me.pgeNoParams.Size = New System.Drawing.Size(440, 334)
Me.pgeNoParams.TabIndex = 1
Me.pgeNoParams.Text = "No Params"
Me.pgeNoParams.UseVisualStyleBackColor = False
'
'txtTenMostExpProds
'
Me.txtTenMostExpProds.AccessibleDescription = "TextBox to display the 10 Most Expensive Products"
Me.txtTenMostExpProds.AccessibleName = "Get the 10 Most Expensive Products TextBox"
Me.txtTenMostExpProds.Location = New System.Drawing.Point(24, 104)
Me.txtTenMostExpProds.Multiline = True
Me.txtTenMostExpProds.Name = "txtTenMostExpProds"
Me.txtTenMostExpProds.Size = New System.Drawing.Size(392, 208)
Me.txtTenMostExpProds.TabIndex = 13
'
'Label1
'
Me.Label1.AccessibleDescription = "Label with description of No Params example"
Me.Label1.AccessibleName = "No Params intro"
Me.Label1.ImeMode = System.Windows.Forms.ImeMode.NoControl
Me.Label1.Location = New System.Drawing.Point(8, 8)
Me.Label1.Name = "Label1"
Me.Label1.Size = New System.Drawing.Size(424, 56)
Me.Label1.TabIndex = 12
Me.Label1.Text = "This example shows how to execute one of the stored procedures added to the sampl" & _
"e database. It takes no input parameters. This example also shows how to use a S" & _
"qlDataReader."
'
'getListOfFirstNames
'
Me.getListOfFirstNames.AccessibleDescription = "Button with text ""Get the 10 Most Expensive Products"""
Me.getListOfFirstNames.AccessibleName = "Get the 10 Most Expensive Products"
Me.getListOfFirstNames.ImeMode = System.Windows.Forms.ImeMode.NoControl
Me.getListOfFirstNames.Location = New System.Drawing.Point(96, 69)
Me.getListOfFirstNames.Name = "getListOfFirstNames"
Me.getListOfFirstNames.Size = New System.Drawing.Size(240, 23)
Me.getListOfFirstNames.TabIndex = 0
Me.getListOfFirstNames.Text = "&Get List of First Names"
'
'pgeInputParam
'
Me.pgeInputParam.AccessibleDescription = "TabPage with text ""Input Param"""
Me.pgeInputParam.AccessibleName = "Input Param tab"
Me.pgeInputParam.Controls.Add(Me.productsGrid)
Me.pgeInputParam.Controls.Add(Me.Label4)
Me.pgeInputParam.Controls.Add(Me.btnGetEmployees)
Me.pgeInputParam.Controls.Add(Me.cboCategoriesInputParam)
Me.pgeInputParam.Controls.Add(Me.Label3)
Me.pgeInputParam.Location = New System.Drawing.Point(4, 22)
Me.pgeInputParam.Name = "pgeInputParam"
Me.pgeInputParam.Size = New System.Drawing.Size(440, 334)
Me.pgeInputParam.TabIndex = 2
Me.pgeInputParam.Text = "Input Param"
Me.pgeInputParam.UseVisualStyleBackColor = False
'
'productsGrid
'
Me.productsGrid.Location = New System.Drawing.Point(8, 124)
Me.productsGrid.Name = "productsGrid"
Me.productsGrid.Size = New System.Drawing.Size(412, 197)
Me.productsGrid.TabIndex = 14
'
'Label4
'
Me.Label4.AccessibleDescription = "Label with description of Input Param example"
Me.Label4.AccessibleName = "Input Param intro"
Me.Label4.ImeMode = System.Windows.Forms.ImeMode.NoControl
Me.Label4.Location = New System.Drawing.Point(8, 8)
Me.Label4.Name = "Label4"
Me.Label4.Size = New System.Drawing.Size(424, 56)
Me.Label4.TabIndex = 13
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -