home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 32 / IOPROG_32.ISO / SOFT / SqlEval7 / devtools / samples / ADO / intro / adoerr.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1998-06-16  |  1.4 KB  |  51 lines

  1. VERSION 5.00
  2. Begin VB.Form Form2 
  3.    Caption         =   "SQLOLEDB Error Log"
  4.    ClientHeight    =   3312
  5.    ClientLeft      =   4680
  6.    ClientTop       =   1668
  7.    ClientWidth     =   6252
  8.    LinkTopic       =   "Form2"
  9.    LockControls    =   -1  'True
  10.    ScaleHeight     =   3312
  11.    ScaleWidth      =   6252
  12.    Begin VB.CommandButton cmdClearErrLog 
  13.       Caption         =   "Clear"
  14.       Height          =   375
  15.       Left            =   3480
  16.       TabIndex        =   2
  17.       Top             =   2520
  18.       Width           =   1455
  19.    End
  20.    Begin VB.CommandButton cmdError 
  21.       Caption         =   "OK"
  22.       Default         =   -1  'True
  23.       Height          =   375
  24.       Left            =   1320
  25.       TabIndex        =   1
  26.       Top             =   2520
  27.       Width           =   1455
  28.    End
  29.    Begin VB.ListBox lstErrors 
  30.       Height          =   1968
  31.       ItemData        =   "adoerr.frx":0000
  32.       Left            =   360
  33.       List            =   "adoerr.frx":0002
  34.       MultiSelect     =   2  'Extended
  35.       TabIndex        =   0
  36.       Top             =   240
  37.       Width           =   5535
  38.    End
  39. Attribute VB_Name = "Form2"
  40. Attribute VB_GlobalNameSpace = False
  41. Attribute VB_Creatable = False
  42. Attribute VB_PredeclaredId = True
  43. Attribute VB_Exposed = False
  44. Private Sub cmdClearErrLog_Click()
  45.     lstErrors.Clear
  46. End Sub
  47. Private Sub cmdError_Click()
  48.     Form2.Hide
  49.     Form1.Show
  50. End Sub
  51.