unknown software exception (0x0eefface) occurr
Brought to you by:
andrewpunch
I'm trying to use the Active X component to convert
HTML text to plain text in Microsoft Access 97
I've inclued the Active X component in the list of
References.
I'm using the following VB Code:
Function htm2txt(Text As String) As String
Dim x As New DocFracLib
x.SetInString (Text)
x.SetInFormat ("html")
x.SetOutFormat ("text")
htm2txt = x.StringConvert()
End Function
Which comples ok.
However when I try to test it using the debug(im
window:
? htm2txt("<p>test</p>")
I get the following error:
The exception unknown software exception (0x0eefface)
occurred in the application at location 0x7c57e592.
And Access closes(crashes).
Any ideas on how to correct / fix this problem?
Colin Forbes
ADDAnet Corp.
Logged In: YES
user_id=928005
May be fixed in version 3.1.1
Probably related to:
https://sourceforge.net/tracker/index.php?func=detail&aid=982380&group_id=96923&atid=616364
Logged In: YES
user_id=928005
I have since seen a similar problem arise in other
applications and it seems to be due to BCB3's poor handling
of exceptions.
This problem should be fixed in version 3.1.2 when the
latest version of Turbo C++ (BCB replacement) is used.