Kbase P122272: Startup of Dynamics application yields error message 76
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  15/02/2007 |
|
Status: Unverified
FACT(s) (Environment):
Dynamics
SYMPTOM(s):
Startup of Dynamics application yields error message 76
** Invalid character in numeric input <character>. (76)
The stack trace points to the following procedure: af\sup2\afspsuperp.p
CAUSE:
A third party system has set the default value of the registry key
HKEY_CURRENT_USER\Control Panel\Colors.
FIX:
Use Registry Editor (regedit) to explicitly delete the (Default) value entry for
HKEY_CURRENT_USER\Control Panel\Colors
or,
Modify content of the internal procedure "setColourTable" in af\sup2\afspsuperp.p
to skip entries that has empty key names:
Enclose the following code:
ASSIGN colour-table-rgb-vals = IF iEntry = 1 THEN key-value
ELSE colour-table-rgb-vals + "," + key-value
colour-table-key-list = IF iEntry = 1 THEN ENTRY(iEntry,key-list)
ELSE colour-table-key-list + "," + ENTRY(iEntry,key-list).
in a conditional block:
IF TRIM(ENTRY(iEntry,key-list)) <> "" THEN DO:
---- Original code ----
END.