WEBUTIL_FILE.FILE_MULTI_SELECTION_DIALOG - Capturing results in Block?
424150Mar 14 2006 — edited Mar 15 2006PROCEDURE P_MULTI_FILE IS
vFile WEBUTIL_FILE.FILE_LIST;
BEGIN
vFile := WEBUTIL_FILE.FILE_MULTI_SELECTION_DIALOG ('C:\', '', 'FMB Files (*.fmb)|*.fmb|', NULL, OPEN_FILE, TRUE);
END;
I want to know how to interact with the results from WEBUTIL_FILE.FILE_MULTI_SELECTION_DIALOG. Following through the debugger I can see that each file is stored as an extension of the return variable
i.e. vFile(1) C:\Temp\AUTH.fmb, vFile(2) C:\Temp\SRCE.fmb
How can I tell how many items the User has selected? I want to be able to insert these values into a multi record block on the form. Any help would be greatly appreciated....