home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form Form2
- Caption = "SQLOLEDB Error Log"
- ClientHeight = 3312
- ClientLeft = 4680
- ClientTop = 1668
- ClientWidth = 6252
- LinkTopic = "Form2"
- LockControls = -1 'True
- ScaleHeight = 3312
- ScaleWidth = 6252
- Begin VB.CommandButton cmdClearErrLog
- Caption = "Clear"
- Height = 375
- Left = 3480
- TabIndex = 2
- Top = 2520
- Width = 1455
- End
- Begin VB.CommandButton cmdError
- Caption = "OK"
- Default = -1 'True
- Height = 375
- Left = 1320
- TabIndex = 1
- Top = 2520
- Width = 1455
- End
- Begin VB.ListBox lstErrors
- Height = 1968
- ItemData = "adoerr.frx":0000
- Left = 360
- List = "adoerr.frx":0002
- MultiSelect = 2 'Extended
- TabIndex = 0
- Top = 240
- Width = 5535
- End
- Attribute VB_Name = "Form2"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub cmdClearErrLog_Click()
- lstErrors.Clear
- End Sub
- Private Sub cmdError_Click()
- Form2.Hide
- Form1.Show
- End Sub
-