home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1996 February
/
PCWK0296.iso
/
po7_win
/
object10
/
quoerror.frm
< prev
next >
Wrap
Text File
|
1994-11-30
|
1KB
|
59 lines
VERSION 2.00
Begin Form frmOraError
BorderStyle = 3 'Fixed Double
Caption = "Oracle Error"
ClientHeight = 1440
ClientLeft = 1770
ClientTop = 5280
ClientWidth = 6675
Height = 1845
Left = 1710
LinkTopic = "Form1"
MaxButton = 0 'False
ScaleHeight = 1440
ScaleWidth = 6675
Top = 4935
Width = 6795
Begin TextBox txtError
Height = 1215
Left = 720
TabIndex = 1
Top = 120
Width = 4455
End
Begin CommandButton cmdOK
Caption = "OK"
Default = -1 'True
Height = 495
Left = 5280
TabIndex = 0
Top = 480
Width = 1215
End
Begin Image Image1
Height = 480
Left = 120
Picture = QUOERROR.FRX:0000
Top = 360
Width = 480
End
End
Option Explicit
Sub cmdOK_Click ()
Unload frmOraError
End Sub
Sub Form_Load ()
Call CenterForm(frmOraError)
If OraSession.LastServerErr = 0 Then
txtError = "ORA-00000 normal, successful completion"
Else
txtError = OraSession.LastServerErrText
End If
End Sub