Skip to Main Content

Oracle Forms

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

WEBUTIL_FILE.FILE_MULTI_SELECTION_DIALOG - Capturing results in Block?

424150Mar 14 2006 — edited Mar 15 2006
PROCEDURE 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....
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Apr 12 2006
Added on Mar 14 2006
1 comment
916 views