home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form frmError
- Caption = "Form1"
- ClientHeight = 3930
- ClientLeft = 60
- ClientTop = 345
- ClientWidth = 7125
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 3930
- ScaleWidth = 7125
- StartUpPosition = 3 'Windows Default
- Begin VB.TextBox txtError
- Height = 1695
- Left = 840
- TabIndex = 5
- Top = 1680
- Visible = 0 'False
- Width = 5535
- End
- Begin VB.CommandButton Command4
- Caption = "&Details..."
- Height = 495
- Left = 5160
- TabIndex = 4
- Top = 960
- Width = 1215
- End
- Begin VB.CommandButton Command3
- Caption = "&Help"
- Height = 495
- Left = 3720
- TabIndex = 3
- Top = 960
- Width = 1215
- End
- Begin VB.CommandButton Command2
- Caption = "&No"
- Height = 495
- Left = 2280
- TabIndex = 2
- Top = 960
- Width = 1215
- End
- Begin VB.CommandButton Command1
- Caption = "&Yes"
- Height = 495
- Left = 840
- TabIndex = 1
- Top = 960
- Width = 1215
- End
- Begin VB.Label Label1
- Caption = "An unexpected error was encountered in Document. Do you wish to continue?"
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 9.75
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 600
- Left = 840
- TabIndex = 0
- Top = 120
- Width = 4815
- End
- Attribute VB_Name = "frmError"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub Command4_Click()
- txtError.Visible = True
- End Sub
- Private Sub Form_Load()
- txtError.Text = Error# + Str$(Err) + Chr(10) + Chr(13) + Chr(10) + Error$ + Chr(13) + Chr(10) + Chr(10)
- End Sub
-