home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form frmObjVBError
- Caption = "Visual Basic Errors"
- ClientHeight = 1410
- ClientLeft = 1740
- ClientTop = 5625
- ClientWidth = 6675
- Height = 1815
- Left = 1680
- LinkTopic = "Form1"
- ScaleHeight = 1410
- ScaleWidth = 6675
- Top = 5280
- Width = 6795
- Begin TextBox txtError
- Height = 1215
- Left = 120
- MultiLine = -1 'True
- ScrollBars = 2 'Vertical
- TabIndex = 0
- Top = 120
- Width = 5175
- End
- Begin CommandButton cmdOK
- Caption = "OK"
- Height = 495
- Left = 5400
- TabIndex = 1
- Top = 480
- Width = 1215
- End
- Option Explicit
- Sub cmdOK_Click ()
- Unload frmObjVBError
- End Sub
- Sub Form_Load ()
- Call CenterForm(frmObjVBError)
- txtError = "VB:" & Trim$(Str$(Err)) & " - " & Error$
- End Sub
-