5 pts.
 How load a subfile inquiry screen from arrays
I need to display a subfile inquiry screen.But not directly from the file.I have to pass the records into arrays.From the array with specific conditions i need to load the subfile inquiry screen. How can i achieve this?

Software/Hardware used:
ASKED: April 15, 2009  2:51 PM
UPDATED: April 15, 2009  6:36 PM

Answer Wiki:
Not much different from using a file You step through the array If the element qualifies to be added You put the element into the subfile fields add 1 to the SFL rrn write the subfile record Heres some sample code. For X = 1 to MaxX if Arr(X) = '''' your rules here Eval SFLFLD1 = Arr(X) Eval SFLRRN += 1 Write SFLRCD endif EndFor Phil
Last Wiki Answer Submitted:  April 15, 2009  6:36 pm  by  philpl1jb   44,190 pts.
All Answer Wiki Contributors:  philpl1jb   44,190 pts.
To see all answers submitted to the Answer Wiki: View Answer History.


Discuss This Question:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _