|
> From: Todd.Sabella@alltel.com > > Everything works fine except when the file contains only 1 record. The > record is displayed in the subfile and then I delete it using the > program. After the record is deleted from the file, the program clears > the subfile and reads the file to reload the subfile. The program > doesn't find any records and correctly sets the indicators for SFLDSP > and SFLDSPCTL. BUT when the screen is displayed, the record that was > deleted is still being displayed on the screen. This sometimes happens because of how the OVERLAY keyword works - if you specify OVERLAY on a record format, other formats that are not overlapped will not be erased. I suspect you have OVERLAY on all your record formats, and none of them overlap the subfile, so the old subfile is not being erased. If this is the case, you can do one of the following when there are no records: 1. Make sure that you write at least one record format WITHOUT using the OVERLAY keyword (condition the OVERLAY with the same indicator that you use to condition SFLDSP). This will erase the entire screen. This option may be the easiest, depending on your screen layout. 2. Write a dummy format that occupies the same space as the subfile. This is actually a nice option, because you can output a nice "no records found" message. Joe
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.