×
The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.
Last Century:
C MyKey chain MyFile 99
c if *in99 and %status=1218
c** Record is locked
c endif
Around the start of this century:
/free
chain(e) MyKey MyFile;
if %error and %status=1218;
// record locked
endif;
-or simply-
chain(e) MyKey MyFile;
if %status=1218;
// record locked
endif;
Most recent technique:
monitor;
chain MyKey MyFile;
on-error 1218;
// record locked
endmon;
Mike Cunningham wrote:
How can I test for a read lock on a CHAIN or READ without using indicators and using %error instead?
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact
[javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.