| 
 | 
On Thu, 2006-01-12 at 08:25 -0700, steema@xxxxxxxxxxxxx wrote:
> OK Looks like I am not mapping the fields the right way.
> 
> I want to be able to move the data from the windows subfile on the line
> that is selected directly to the corresponding fields of the calling
> program.
> 
> I assume this is possible.
> 
> I seem to be missing a step in this.
When you put a record in the subfile, and want it back, you must
read/readc/chain to get it back into memory.
for i = 1 to subfile_count;
    chain i subfile;
    if wselect = RECORD_SELECTED;
        // do something
    endfor;
        
endfor;
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2025 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.