English Amiga Board


Go Back   English Amiga Board > Coders > Coders. System > Coders. Scripting

 
 
Thread Tools
Old 05 December 2015, 15:55   #1
daxb
Registered User
 
Join Date: Oct 2009
Location: Germany
Posts: 3,303
DOpus5 lister handling

I`ve a problem with open new DOpus lister, the command "LISTER QUERY" and its RC.

Following two examples work but for some strange reason I get always RC=20 for first example. 20 means:
Quote:
20 - RXERR_NO_LISTER
A lister failed to open (usually because of low-memory).
Code:
[...]
'LISTER NEW' dir                               /* Open lister with given path */
'LISTER QUERY ACTIVE' ; activelister = RESULT  /* Get handle of ACTIVE lister */
IF RC >= 20 THEN EXIT                          /* Exit if can`t get handle of ACTIVE lister */
[...]
Code:
[...]
'LISTER NEW'                                   /* Open lister */
'LISTER QUERY ACTIVE' ; activelister = RESULT  /* Get handle of ACTIVE lister */
IF RC >= 20 THEN EXIT                          /* Exit if can`t get handle of ACTIVE lister */
'LISTER READ' activelister dir                 /* Read given dir into ACTIVE lister */
[...]
But the lister opens and RESULT contains a valid address. The "LISTER QUERY ACTIVE" docs say:
Quote:
If no listers are available the result will be empty and RC will contain the relevant error code.
I thought this could be the reason but then it must be the same in both examples:
Quote:
lister wait <handle> [quick]

This command causes the rexx script to wait for the specified lister to finish whatever it is doing.

Because Opus 5 multitasks, all rexx commands (like lister read, or lister new) will return immediately, even if the lister has not completed its task. This command will force the script to wait until the lister goes non-busy.
Is "LISTER NEW <path>" broken by design? At least you cannot wait for a lister that not yet exists. Anyone with an explanation whats going wrong?
daxb is online now  
 


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

Similar Threads
Thread Thread Starter Forum Replies Last Post
Dopus5.91 is OUT kas1e News 16 21 August 2023 11:25
Dopus 5.90 changing lister colors results in crash/restart. Benfromnorway support.Apps 1 08 September 2014 16:11
Compiling Dopus5. Thorham Coders. C/C++ 0 29 September 2013 04:40
Magellan changing Lister options Retrofan support.Apps 18 25 January 2013 13:32

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +2. The time now is 18:55.

Top

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.
Page generated in 0.20979 seconds with 15 queries