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

📄 select7.frm

📁 《VB6数据库开发指南》所有的例程的源码
💻 FRM
字号:
VERSION 5.00
Object = "{FAEEE763-117E-101B-8933-08002B2F4F5A}#1.1#0"; "DBLIST32.OCX"
Begin VB.Form Form1 
   BackColor       =   &H00C0C0C0&
   Caption         =   "Chapter 3.7 Example"
   ClientHeight    =   2430
   ClientLeft      =   2280
   ClientTop       =   1935
   ClientWidth     =   5370
   LinkTopic       =   "Form1"
   PaletteMode     =   1  'UseZOrder
   ScaleHeight     =   2430
   ScaleWidth      =   5370
   Begin VB.CommandButton cmdClose 
      Caption         =   "&Close"
      Default         =   -1  'True
      Height          =   555
      Left            =   3930
      TabIndex        =   1
      Top             =   1770
      Width           =   1335
   End
   Begin VB.Data dtaData 
      Caption         =   "dtaData"
      Connect         =   "Access"
      DatabaseName    =   ""
      DefaultCursorType=   0  'DefaultCursor
      DefaultType     =   2  'UseODBC
      Exclusive       =   0   'False
      Height          =   345
      Left            =   90
      Options         =   0
      ReadOnly        =   0   'False
      RecordsetType   =   2  'Snapshot
      RecordSource    =   $"Select7.frx":0000
      Top             =   2010
      Visible         =   0   'False
      Width           =   2115
   End
   Begin MSDBCtls.DBList dlstAuthors 
      Bindings        =   "Select7.frx":00AB
      Height          =   1230
      Left            =   90
      TabIndex        =   0
      Top             =   390
      Width           =   5175
      _ExtentX        =   9128
      _ExtentY        =   2170
      _Version        =   327680
      MatchEntry      =   -1  'True
      BackColor       =   -2147483643
      ListField       =   "Author"
      BoundColumn     =   "Company Name"
   End
   Begin VB.Label lblPublishers 
      AutoSize        =   -1  'True
      BackColor       =   &H00C0C0C0&
      Caption         =   "Authors without Title records"
      Height          =   195
      Left            =   90
      TabIndex        =   2
      Top             =   150
      Width           =   2010
   End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit

Private Const BIBLIO_PATH = "D:\Program Files\Microsoft Visual Studio\VB6\Biblio.MDB"
Private Sub cmdClose_Click()
    End
End Sub

Private Sub Form_Load()
    'Set the DatabaseName of the data control.
    dtaData.DatabaseName = BIBLIO_PATH
End Sub

⌨️ 快捷键说明

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