⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dbfactory.designer.vb

📁 wrox出版社的另一套经典的VB2005数据库编程学习书籍,收集了书中源码,郑重推荐,电子书,电子书下载
💻 VB
字号:
Partial Public Class frmDbFactory
    Inherits System.Windows.Forms.Form

    <System.Diagnostics.DebuggerNonUserCode()> _
    Public Sub New()
        MyBase.New()

        'This call is required by the Windows Form Designer.
        InitializeComponent()

    End Sub

    '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()
        Me.optOleDb = New System.Windows.Forms.RadioButton
        Me.optOdbc = New System.Windows.Forms.RadioButton
        Me.dgvSchema = New System.Windows.Forms.DataGridView
        Me.grpProvider = New System.Windows.Forms.GroupBox
        Me.optSqlClient = New System.Windows.Forms.RadioButton
        Me.lstData = New System.Windows.Forms.ListBox
        CType(Me.dgvSchema, System.ComponentModel.ISupportInitialize).BeginInit()
        Me.grpProvider.SuspendLayout()
        Me.SuspendLayout()
        '
        'optOleDb
        '
        Me.optOleDb.Location = New System.Drawing.Point(7, 41)
        Me.optOleDb.Name = "optOleDb"
        Me.optOleDb.Size = New System.Drawing.Size(56, 15)
        Me.optOleDb.TabIndex = 1
        Me.optOleDb.Text = "OleDb"
        '
        'optOdbc
        '
        Me.optOdbc.Location = New System.Drawing.Point(7, 62)
        Me.optOdbc.Name = "optOdbc"
        Me.optOdbc.Size = New System.Drawing.Size(52, 15)
        Me.optOdbc.TabIndex = 2
        Me.optOdbc.Text = "Odbc"
        '
        'dgvSchema
        '
        Me.dgvSchema.AllowUserToAddRows = False
        Me.dgvSchema.AllowUserToDeleteRows = False
        Me.dgvSchema.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.DisplayedCells
        Me.dgvSchema.BorderStyle = System.Windows.Forms.BorderStyle.None
        Me.dgvSchema.Location = New System.Drawing.Point(13, 176)
        Me.dgvSchema.Name = "dgvSchema"
        Me.dgvSchema.ReadOnly = True
        Me.dgvSchema.Size = New System.Drawing.Size(441, 194)
        Me.dgvSchema.TabIndex = 5
        '
        'grpProvider
        '
        Me.grpProvider.Controls.Add(Me.optOleDb)
        Me.grpProvider.Controls.Add(Me.optOdbc)
        Me.grpProvider.Controls.Add(Me.optSqlClient)
        Me.grpProvider.Location = New System.Drawing.Point(23, 47)
        Me.grpProvider.Name = "grpProvider"
        Me.grpProvider.Size = New System.Drawing.Size(118, 85)
        Me.grpProvider.TabIndex = 3
        Me.grpProvider.TabStop = False
        Me.grpProvider.Text = "Select Data Provider"
        '
        'optSqlClient
        '
        Me.optSqlClient.Checked = True
        Me.optSqlClient.Location = New System.Drawing.Point(7, 20)
        Me.optSqlClient.Name = "optSqlClient"
        Me.optSqlClient.Size = New System.Drawing.Size(77, 15)
        Me.optSqlClient.TabIndex = 0
        Me.optSqlClient.Text = "SqlClient"
        '
        'lstData
        '
        Me.lstData.FormattingEnabled = True
        Me.lstData.Location = New System.Drawing.Point(239, 12)
        Me.lstData.Name = "lstData"
        Me.lstData.Size = New System.Drawing.Size(215, 147)
        Me.lstData.TabIndex = 4
        '
        'frmDbFactory
        '
        Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
        Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
        Me.ClientSize = New System.Drawing.Size(468, 382)
        Me.Controls.Add(Me.dgvSchema)
        Me.Controls.Add(Me.grpProvider)
        Me.Controls.Add(Me.lstData)
        Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog
        Me.MaximizeBox = False
        Me.Name = "frmDbFactory"
        Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen
        Me.Text = "DbFactory Test Form - SqlClient"
        CType(Me.dgvSchema, System.ComponentModel.ISupportInitialize).EndInit()
        Me.grpProvider.ResumeLayout(False)
        Me.ResumeLayout(False)

    End Sub
    Friend WithEvents optOleDb As System.Windows.Forms.RadioButton
    Friend WithEvents optOdbc As System.Windows.Forms.RadioButton
    Friend WithEvents dgvSchema As System.Windows.Forms.DataGridView
    Friend WithEvents grpProvider As System.Windows.Forms.GroupBox
    Friend WithEvents optSqlClient As System.Windows.Forms.RadioButton
    Friend WithEvents lstData As System.Windows.Forms.ListBox

End Class

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -