home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1996 February / PCWK0296.iso / po7_win / object10 / objvberr.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1994-11-20  |  1.1 KB  |  40 lines

  1. VERSION 2.00
  2. Begin Form frmObjVBError 
  3.    Caption         =   "Visual Basic Errors"
  4.    ClientHeight    =   1410
  5.    ClientLeft      =   1740
  6.    ClientTop       =   5625
  7.    ClientWidth     =   6675
  8.    Height          =   1815
  9.    Left            =   1680
  10.    LinkTopic       =   "Form1"
  11.    ScaleHeight     =   1410
  12.    ScaleWidth      =   6675
  13.    Top             =   5280
  14.    Width           =   6795
  15.    Begin TextBox txtError 
  16.       Height          =   1215
  17.       Left            =   120
  18.       MultiLine       =   -1  'True
  19.       ScrollBars      =   2  'Vertical
  20.       TabIndex        =   0
  21.       Top             =   120
  22.       Width           =   5175
  23.    End
  24.    Begin CommandButton cmdOK 
  25.       Caption         =   "OK"
  26.       Height          =   495
  27.       Left            =   5400
  28.       TabIndex        =   1
  29.       Top             =   480
  30.       Width           =   1215
  31.    End
  32. Option Explicit
  33. Sub cmdOK_Click ()
  34.  Unload frmObjVBError
  35. End Sub
  36. Sub Form_Load ()
  37.  Call CenterForm(frmObjVBError)
  38.  txtError = "VB:" & Trim$(Str$(Err)) & " - " & Error$
  39. End Sub
  40.