Kbase P10945: Load image never gets the image updated if the image was alr
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  07/03/2003 |
|
Status: Unverified
SYMPTOM(s):
Load image never gets the image updated if the image was already loaded
CAUSE:
PROGRESS uses the image by that name it finds in memory
FIX:
Use the LOAD-IMAGE method with a null parameter
The code could be some thing like :
REPEAT:
OS-COMMAND "command that replaces myimg.bmp with a new image".
i-status = object-name:LOAD-IMAGE("").
i-status = object-name:LOAD-IMAGE(myimg.bmp).
.
.
END.