Steve Litchfield reports seeing this on the OPL for UIQ beta release,
except it *went away* after reinstalling OPL.
Steve's code to reproduce the problem:
proc sound:(sound$)
rem Generic sound playing routine
if sound%<>1
return
endif
if gstatus&=&80000001
iowaitstat32 gstatus&
endif
IF NOT EXIST(path$+"\"+sound$)
ALERT(path$+"\"+sound$,"not found, test abandoned.")
RETURN
ENDIF
CreateFilePlayerSimpleA:(path$+"\"+sound$,gstatus&)
IOWAITSTAT32 gstatus&
PlayFileA:(gstatus&)
IOWAITSTAT32 gstatus&
CloseFilePlayer:
return
endp
Some people can see it, others don't. It's not seen on the UIQ emulator.
We're trying to track down the occurrence pattern.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Logged In: YES
user_id=719915
[Actually, here's that comment]
i found a new error code :
DO
BEEP 2,200
UNTIL k%=KEY
when i hit a key it gives error E32USER-CBASE 21
Logged In: YES
user_id=719915
Steve Litchfield reports seeing this on the OPL for UIQ beta release,
except it *went away* after reinstalling OPL.
Steve's code to reproduce the problem:
proc sound:(sound$)
rem Generic sound playing routine
if sound%<>1
return
endif
if gstatus&=&80000001
iowaitstat32 gstatus&
endif
IF NOT EXIST(path$+"\"+sound$)
ALERT(path$+"\"+sound$,"not found, test abandoned.")
RETURN
ENDIF
CreateFilePlayerSimpleA:(path$+"\"+sound$,gstatus&)
IOWAITSTAT32 gstatus&
PlayFileA:(gstatus&)
IOWAITSTAT32 gstatus&
CloseFilePlayer:
return
endp
Some people can see it, others don't. It's not seen on the UIQ emulator.
We're trying to track down the occurrence pattern.
Logged In: YES
user_id=719915
As this is impacting a shipping OPL app, I'm moving its priority up.
Logged In: YES
user_id=719915
BTW this is a EArrayIndexOutOfRange panic.