Kbase P142891: Getting error 4078 when assigning TAB-STOP property to a dynamic widget handle
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  3/13/2009 |
|
Status: Unverified
SYMPTOM(s):
Getting error 4078 when assigning TAB-STOP property to a dynamic widget handle
Unable to set attribute TAB-STOP for IMAGE <image-name>. (4078)
FACT(s) (Environment):
OpenEdge 10.x
Progress 9.x
Windows
CAUSE:
IMAGE widget does not allow to set TAB-STOP property
FIX:
Use CAN-QUERY & CAN-SET functions when assigning properties on widget handles
Example:
IF CAN-SET( widget-handle, "TAB-STOP" ) THEN
ASSIGN widget-handle:TAB-STOP = TRUE.