home *** CD-ROM | disk | FTP | other *** search
- VERSION 4.00
- Begin VB.Form ViewErrors
- Caption = "View Errors"
- ClientHeight = 3615
- ClientLeft = 2100
- ClientTop = 3465
- ClientWidth = 7380
- Height = 4020
- HelpContextID = 510
- Icon = "ERRORS.frx":0000
- Left = 2040
- LinkTopic = "Form1"
- ScaleHeight = 3615
- ScaleWidth = 7380
- Top = 3120
- Width = 7500
- Begin VB.TextBox Text1
- Appearance = 0 'Flat
- BorderStyle = 0 'None
- Height = 1980
- Left = 0
- Locked = -1 'True
- MousePointer = 1 'Arrow
- MultiLine = -1 'True
- ScrollBars = 3 'Both
- TabIndex = 0
- TabStop = 0 'False
- Top = 0
- Width = 3720
- End
- Attribute VB_Name = "ViewErrors"
- Attribute VB_Creatable = False
- Attribute VB_Exposed = False
- Option Explicit
- Private Sub Form_Paint()
- Screen.MousePointer = vbDefault
- End Sub
- Private Sub Form_Resize()
- Text1.Width = ScaleWidth
- Text1.Height = ScaleHeight
- End Sub
- Private Sub Form_Unload(Cancel As Integer)
- Screen.MousePointer = vbHourglass
- End Sub
-