要添加一个 import file的GUI模块, 不知道怎么设计?
网上资料有限谁有经验的来说说吧?谢谢了~

解决方案 »

  1.   

    尝试用lOV做?
    猜测的 我也没做过这种提示选择文件的对话框
      

  2.   

    form6i的写法,只能cs模式使用filename := GET_FILE_NAME(File_Filter=> 'EXCEL Files (*.XLS)|*.XLS|',
    dialog_type => OPEN_FILE,select_file=>TRUE);
    if filename is null then
    raise form_trigger_failure;
    end if;
      

  3.   

    Thanks, bw555. 
    I finally get it work:1) open the dialog
    v_filename := get_file_name(file_filter=>'All files(*.*)|*.txt|');
    2) handle the selected file
    v_handle := text_io.fopen(v_filename, 'w');
    text_io.put_line(v_handle, 'hello, world! --- test');