📄 driver.frm
字号:
VERSION 5.00
Object = "*\A..\SOURCE\FAST2003.vbp"
Begin VB.Form frmODBC
BorderStyle = 3 'Fixed Dialog
Caption = "ODBC Information"
ClientHeight = 2775
ClientLeft = 1905
ClientTop = 2520
ClientWidth = 6165
Icon = "Driver.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
PaletteMode = 1 'UseZOrder
ScaleHeight = 2775
ScaleWidth = 6165
ShowInTaskbar = 0 'False
StartUpPosition = 2 'CenterScreen
Begin VB.CommandButton cmdProperties
Caption = "Properties..."
Height = 420
Left = 4005
TabIndex = 1
Top = 2250
Width = 2085
End
Begin VB.ListBox lstSources
Height = 2010
Left = 45
TabIndex = 0
Top = 45
Width = 6090
End
Begin FLWSystem.FWODBC objODBC
Left = 1515
Top = 2160
_ExtentX = 820
_ExtentY = 820
End
End
Attribute VB_Name = "frmODBC"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub cmdProperties_Click()
Call objODBC.ShowProperties
End Sub
Private Sub Form_Load()
Dim intInd As Integer
Call objODBC.Refresh
For intInd = 1 To objODBC.Count
Call lstSources.AddItem(objODBC.Source(intInd) & " - " & _
objODBC.Driver(intInd))
Next
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -