Kbase P57030: Error 5889 when there is no either Progress locally installe
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  22/01/2004 |
|
Status: Unverified
SYMPTOM(s):
Error 5889 when there is no either Progress locally installed or netsetup
Unexpected error occurred while processing method/statement <method or statement name>.
<COM message>
<Program name> (5889)
CAUSE:
Progress ocx files are not registered. A local installation or a netsetup installation was not completed.
FIX:
The following code should be used only if you are not using a progress.ini file for you session.
This procedure checks for the DLC key that should be defined into the registry wether you have a local or netsetup installation.
DEFINE VARIABLE key-val AS CHARACTER NO-UNDO.
LOAD "SOFTWARE" BASE-KEY "HKEY_LOCAL_MACHINE".
USE "SOFTWARE".
GET-KEY-VALUE
SECTION "PSC\PROGRESS\8.3E\Startup\"
KEY "DLC"
VALUE key-val.
IF key-val <> "" THEN
MESSAGE "DLC=" key-val
VIEW-AS ALERT-BOX INFO BUTTONS OK.
UNLOAD "SOFTWARE".