Bug when dealing with multiple file input elements?

I'm running Apex 4.2 and have an odd problem.
Back Story:
I have created a page on a standard web server (Apache) that allows a user to select multiple images from there local machine. The form reads one file at a time displaying a preview of the image and reading the exif data from the file.  We are entering extra data about each picture into a form.  So the flow of the page is: user selects images -> first image is displayed and user enters data -> submits data via ajax -> user hits button and next image comes up.  The user repeats until all images are done.  I have not done the ajax portion but all other parts work fine on the Apache server.
The Problem:
I need to recreate this type of form in Apex.   If I create a multiple file input item on a page all the tabs stop working.  They take you to a 404 page with the message "The requested URL /apex/wwv_flow.accept was not found on this server ".  I have tracked it back to anything calling the apex.submit() javascript function. 
Literally if I make a html region and place "<input id="uploadInput" type="file" name="myFiles" multiple>"  into the region source the apex.submit() function stops working.
Any thoughts?

Epic Fail wrote:
Literally if I make a html region and place "<input id="uploadInput" type="file" name="myFiles" multiple>"  into the region source the apex.submit() function stops working.
Any thoughts?
Not a bug. The file browse control you have created cannot be processed by the APEX wwv_flow.accept procedure that performs page submit processing. Your control's name attribute is myFiles, but there is no corresponding parameter in wwv_flow.accept:
-- A C C E P T
-- This procedure accepts virtually every flow page.
-- Reference show procedure for input argument descriptions.
procedure accept (
    p_request      in varchar2  default null,
    p_instance      in varchar2  default null,
    p_flow_id      in varchar2  default null,
    p_company      in number    default null,
    p_flow_step_id  in varchar2  default null,
    p_arg_names    in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_arg_values    in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_arg_checksums in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_page_checksum in varchar2                default null,
    p_accept_processing in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v01          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v02          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v03          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v04          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v05          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v06          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v07          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v08          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v09          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v10          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v11          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v12          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v13          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v14          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v15          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v16          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v17          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v18          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v19          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v20          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v21          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v22          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v23          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v24          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v25          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v26          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v27          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v28          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v29          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v30          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v31          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v32          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v33          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v34          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v35          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v36          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v37          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v38          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v39          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v40          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v41          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v42          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v43          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v44          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v45          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v46          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v47          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v48          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v49          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v50          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v51          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v52          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v53          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v54          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v55          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v56          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v57          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v58          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v59          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v60          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v61          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v62          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v63          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v64          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v65          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v66          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v67          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v68          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v69          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v70          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v71          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v72          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v73          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v74          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v75          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v76          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v77          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v78          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v79          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v80          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v81          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v82          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v83          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v84          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v85          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v86          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v87          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v88          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v89          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v90          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v91          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v92          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v93          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v94          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v95          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v96          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v97          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v98          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v99          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v100          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v101          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v102          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v103          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v104          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v105          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v106          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v107          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v108          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v109          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v110          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v111          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v112          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v113          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v114          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v115          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v116          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v117          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v118          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v119          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v120          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v121          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v122          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v123          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v124          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v125          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v126          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v127          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v128          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v129          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v130          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v131          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v132          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v133          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v134          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v135          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v136          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v137          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v138          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v139          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v140          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v141          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v142          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v143          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v144          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v145          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v146          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v147          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v148          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v149          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v150          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v151          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v152          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v153          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v154          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v155          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v156          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v157          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v158          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v159          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v160          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v161          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v162          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v163          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v164          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v165          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v166          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v167          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v168          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v169          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v170          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v171          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v172          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v173          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v174          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v175          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v176          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v177          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v178          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v179          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v180          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v181          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v182          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v183          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v184          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v185          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v186          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v187          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v188          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v189          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v190          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v191          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v192          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v193          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v194          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v195          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v196          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v197          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v198          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v199          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_v200          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_t01          in varchar2  default null,
    p_t02          in varchar2  default null,
    p_t03          in varchar2  default null,
    p_t04          in varchar2  default null,
    p_t05          in varchar2  default null,
    p_t06          in varchar2  default null,
    p_t07          in varchar2  default null,
    p_t08          in varchar2  default null,
    p_t09          in varchar2  default null,
    p_t10          in varchar2  default null,
    p_t11          in varchar2  default null,
    p_t12          in varchar2  default null,
    p_t13          in varchar2  default null,
    p_t14          in varchar2  default null,
    p_t15          in varchar2  default null,
    p_t16          in varchar2  default null,
    p_t17          in varchar2  default null,
    p_t18          in varchar2  default null,
    p_t19          in varchar2  default null,
    p_t20          in varchar2  default null,
    p_t21          in varchar2  default null,
    p_t22          in varchar2  default null,
    p_t23          in varchar2  default null,
    p_t24          in varchar2  default null,
    p_t25          in varchar2  default null,
    p_t26          in varchar2  default null,
    p_t27          in varchar2  default null,
    p_t28          in varchar2  default null,
    p_t29          in varchar2  default null,
    p_t30          in varchar2  default null,
    p_t31          in varchar2  default null,
    p_t32          in varchar2  default null,
    p_t33          in varchar2  default null,
    p_t34          in varchar2  default null,
    p_t35          in varchar2  default null,
    p_t36          in varchar2  default null,
    p_t37          in varchar2  default null,
    p_t38          in varchar2  default null,
    p_t39          in varchar2  default null,
    p_t40          in varchar2  default null,
    p_t41          in varchar2  default null,
    p_t42          in varchar2  default null,
    p_t43          in varchar2  default null,
    p_t44          in varchar2  default null,
    p_t45          in varchar2  default null,
    p_t46          in varchar2  default null,
    p_t47          in varchar2  default null,
    p_t48          in varchar2  default null,
    p_t49          in varchar2  default null,
    p_t50          in varchar2  default null,
    p_t51          in varchar2  default null,
    p_t52          in varchar2  default null,
    p_t53          in varchar2  default null,
    p_t54          in varchar2  default null,
    p_t55          in varchar2  default null,
    p_t56          in varchar2  default null,
    p_t57          in varchar2  default null,
    p_t58          in varchar2  default null,
    p_t59          in varchar2  default null,
    p_t60          in varchar2  default null,
    p_t61          in varchar2  default null,
    p_t62          in varchar2  default null,
    p_t63          in varchar2  default null,
    p_t64          in varchar2  default null,
    p_t65          in varchar2  default null,
    p_t66          in varchar2  default null,
    p_t67          in varchar2  default null,
    p_t68          in varchar2  default null,
    p_t69          in varchar2  default null,
    p_t70          in varchar2  default null,
    p_t71          in varchar2  default null,
    p_t72          in varchar2  default null,
    p_t73          in varchar2  default null,
    p_t74          in varchar2  default null,
    p_t75          in varchar2  default null,
    p_t76          in varchar2  default null,
    p_t77          in varchar2  default null,
    p_t78          in varchar2  default null,
    p_t79          in varchar2  default null,
    p_t80          in varchar2  default null,
    p_t81          in varchar2  default null,
    p_t82          in varchar2  default null,
    p_t83          in varchar2  default null,
    p_t84          in varchar2  default null,
    p_t85          in varchar2  default null,
    p_t86          in varchar2  default null,
    p_t87          in varchar2  default null,
    p_t88          in varchar2  default null,
    p_t89          in varchar2  default null,
    p_t90          in varchar2  default null,
    p_t91          in varchar2  default null,
    p_t92          in varchar2  default null,
    p_t93          in varchar2  default null,
    p_t94          in varchar2  default null,
    p_t95          in varchar2  default null,
    p_t96          in varchar2  default null,
    p_t97          in varchar2  default null,
    p_t98          in varchar2  default null,
    p_t99          in varchar2  default null,
    p_t100          in varchar2  default null,
    p_t101          in varchar2  default null,
    p_t102          in varchar2  default null,
    p_t103          in varchar2  default null,
    p_t104          in varchar2  default null,
    p_t105          in varchar2  default null,
    p_t106          in varchar2  default null,
    p_t107          in varchar2  default null,
    p_t108          in varchar2  default null,
    p_t109          in varchar2  default null,
    p_t110          in varchar2  default null,
    p_t111          in varchar2  default null,
    p_t112          in varchar2  default null,
    p_t113          in varchar2  default null,
    p_t114          in varchar2  default null,
    p_t115          in varchar2  default null,
    p_t116          in varchar2  default null,
    p_t117          in varchar2  default null,
    p_t118          in varchar2  default null,
    p_t119          in varchar2  default null,
    p_t120          in varchar2  default null,
    p_t121          in varchar2  default null,
    p_t122          in varchar2  default null,
    p_t123          in varchar2  default null,
    p_t124          in varchar2  default null,
    p_t125          in varchar2  default null,
    p_t126          in varchar2  default null,
    p_t127          in varchar2  default null,
    p_t128          in varchar2  default null,
    p_t129          in varchar2  default null,
    p_t130          in varchar2  default null,
    p_t131          in varchar2  default null,
    p_t132          in varchar2  default null,
    p_t133          in varchar2  default null,
    p_t134          in varchar2  default null,
    p_t135          in varchar2  default null,
    p_t136          in varchar2  default null,
    p_t137          in varchar2  default null,
    p_t138          in varchar2  default null,
    p_t139          in varchar2  default null,
    p_t140          in varchar2  default null,
    p_t141          in varchar2  default null,
    p_t142          in varchar2  default null,
    p_t143          in varchar2  default null,
    p_t144          in varchar2  default null,
    p_t145          in varchar2  default null,
    p_t146          in varchar2  default null,
    p_t147          in varchar2  default null,
    p_t148          in varchar2  default null,
    p_t149          in varchar2  default null,
    p_t150          in varchar2  default null,
    p_t151          in varchar2  default null,
    p_t152          in varchar2  default null,
    p_t153          in varchar2  default null,
    p_t154          in varchar2  default null,
    p_t155          in varchar2  default null,
    p_t156          in varchar2  default null,
    p_t157          in varchar2  default null,
    p_t158          in varchar2  default null,
    p_t159          in varchar2  default null,
    p_t160          in varchar2  default null,
    p_t161          in varchar2  default null,
    p_t162          in varchar2  default null,
    p_t163          in varchar2  default null,
    p_t164          in varchar2  default null,
    p_t165          in varchar2  default null,
    p_t166          in varchar2  default null,
    p_t167          in varchar2  default null,
    p_t168          in varchar2  default null,
    p_t169          in varchar2  default null,
    p_t170          in varchar2  default null,
    p_t171          in varchar2  default null,
    p_t172          in varchar2  default null,
    p_t173          in varchar2  default null,
    p_t174          in varchar2  default null,
    p_t175          in varchar2  default null,
    p_t176          in varchar2  default null,
    p_t177          in varchar2  default null,
    p_t178          in varchar2  default null,
    p_t179          in varchar2  default null,
    p_t180          in varchar2  default null,
    p_t181          in varchar2  default null,
    p_t182          in varchar2  default null,
    p_t183          in varchar2  default null,
    p_t184          in varchar2  default null,
    p_t185          in varchar2  default null,
    p_t186          in varchar2  default null,
    p_t187          in varchar2  default null,
    p_t188          in varchar2  default null,
    p_t189          in varchar2  default null,
    p_t190          in varchar2  default null,
    p_t191          in varchar2  default null,
    p_t192          in varchar2  default null,
    p_t193          in varchar2  default null,
    p_t194          in varchar2  default null,
    p_t195          in varchar2  default null,
    p_t196          in varchar2  default null,
    p_t197          in varchar2  default null,
    p_t198          in varchar2  default null,
    p_t199          in varchar2  default null,
    p_t200          in varchar2  default null,
    f01            in wwv_flow_global.vc_arr2 default empty_vc_arr,
    f02            in wwv_flow_global.vc_arr2 default empty_vc_arr,
    f03            in wwv_flow_global.vc_arr2 default empty_vc_arr,
    f04            in wwv_flow_global.vc_arr2 default empty_vc_arr,
    f05            in wwv_flow_global.vc_arr2 default empty_vc_arr,
    f06            in wwv_flow_global.vc_arr2 default empty_vc_arr,
    f07            in wwv_flow_global.vc_arr2 default empty_vc_arr,
    f08            in wwv_flow_global.vc_arr2 default empty_vc_arr,
    f09            in wwv_flow_global.vc_arr2 default empty_vc_arr,
    f10            in wwv_flow_global.vc_arr2 default empty_vc_arr,
    f11            in wwv_flow_global.vc_arr2 default empty_vc_arr,
    f12            in wwv_flow_global.vc_arr2 default empty_vc_arr,
    f13            in wwv_flow_global.vc_arr2 default empty_vc_arr,
    f14            in wwv_flow_global.vc_arr2 default empty_vc_arr,
    f15            in wwv_flow_global.vc_arr2 default empty_vc_arr,
    f16            in wwv_flow_global.vc_arr2 default empty_vc_arr,
    f17            in wwv_flow_global.vc_arr2 default empty_vc_arr,
    f18            in wwv_flow_global.vc_arr2 default empty_vc_arr,
    f19            in wwv_flow_global.vc_arr2 default empty_vc_arr,
    f20            in wwv_flow_global.vc_arr2 default empty_vc_arr,
    f21            in wwv_flow_global.vc_arr2 default empty_vc_arr,
    f22            in wwv_flow_global.vc_arr2 default empty_vc_arr,
    f23            in wwv_flow_global.vc_arr2 default empty_vc_arr,
    f24            in wwv_flow_global.vc_arr2 default empty_vc_arr,
    f25            in wwv_flow_global.vc_arr2 default empty_vc_arr,
    f26            in wwv_flow_global.vc_arr2 default empty_vc_arr,
    f27            in wwv_flow_global.vc_arr2 default empty_vc_arr,
    f28            in wwv_flow_global.vc_arr2 default empty_vc_arr,
    f29            in wwv_flow_global.vc_arr2 default empty_vc_arr,
    f30            in wwv_flow_global.vc_arr2 default empty_vc_arr,
    f31            in wwv_flow_global.vc_arr2 default empty_vc_arr,
    f32            in wwv_flow_global.vc_arr2 default empty_vc_arr,
    f33            in wwv_flow_global.vc_arr2 default empty_vc_arr,
    f34            in wwv_flow_global.vc_arr2 default empty_vc_arr,
    f35            in wwv_flow_global.vc_arr2 default empty_vc_arr,
    f36            in wwv_flow_global.vc_arr2 default empty_vc_arr,
    f37            in wwv_flow_global.vc_arr2 default empty_vc_arr,
    f38            in wwv_flow_global.vc_arr2 default empty_vc_arr,
    f39            in wwv_flow_global.vc_arr2 default empty_vc_arr,
    f40            in wwv_flow_global.vc_arr2 default empty_vc_arr,
    f41            in wwv_flow_global.vc_arr2 default empty_vc_arr,
    f42            in wwv_flow_global.vc_arr2 default empty_vc_arr,
    f43            in wwv_flow_global.vc_arr2 default empty_vc_arr,
    f44            in wwv_flow_global.vc_arr2 default empty_vc_arr,
    f45            in wwv_flow_global.vc_arr2 default empty_vc_arr,
    f46            in wwv_flow_global.vc_arr2 default empty_vc_arr,
    f47            in wwv_flow_global.vc_arr2 default empty_vc_arr,
    f48            in wwv_flow_global.vc_arr2 default empty_vc_arr,
    f49            in wwv_flow_global.vc_arr2 default empty_vc_arr,
    f50            in wwv_flow_global.vc_arr2 default empty_vc_arr,
    fcs            in wwv_flow_global.vc_arr2 default empty_vc_arr,
    fmap            in wwv_flow_global.vc_arr2 default empty_vc_arr,
    fhdr            in wwv_flow_global.vc_arr2 default empty_vc_arr,
    fcud            in wwv_flow_global.vc_arr2 default empty_vc_arr,
    frowid          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    x01            in varchar2  default null,
    x02            in varchar2  default null,
    x03            in varchar2  default null,
    x04            in varchar2  default null,
    x05            in varchar2  default null,
    x06            in varchar2  default null,
    x07            in varchar2  default null,
    x08            in varchar2  default null,
    x09            in varchar2  default null,
    x10            in varchar2  default null,
    x11            in varchar2  default null,
    x12            in varchar2  default null,
    x13            in varchar2  default null,
    x14            in varchar2  default null,
    x15            in varchar2  default null,
    x16            in varchar2  default null,
    x17            in varchar2  default null,
    x18            in varchar2  default null,
    x19            in varchar2  default null,
    x20            in varchar2  default null,
    p_listener      in wwv_flow_global.vc_arr2 default empty_vc_arr, -- used to communicate with apex listner
    p_map1          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_map2          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_map3          in wwv_flow_global.vc_arr2 default empty_vc_arr,
    p_survey_map    in varchar2  default null,
    p_flow_current_min_row      in varchar2 default '1',
    p_flow_current_max_rows    in varchar2 default '10',
    p_flow_current_rows_fetched in varchar2 default '0',
    p_debug                    in varchar2 default 'NO',
    p_trace                    in varchar2 default 'NO',
    p_md5_checksum              in varchar2 default '0',
    p_page_submission_id        in varchar2 default null,
    p_time_zone                in varchar2 default null,
    p_ignore_01    in varchar2 default null,
    p_ignore_02    in varchar2 default null,
    p_ignore_03    in varchar2 default null,
    p_ignore_04    in varchar2 default null,
    p_ignore_05    in varchar2 default null,
    p_ignore_06    in varchar2 default null,
    p_ignore_07    in varchar2 default null,
    p_ignore_08    in varchar2 default null,
    p_ignore_09    in varchar2 default null,
    p_ignore_10    in varchar2 default null,
    p_lang          in varchar2 default null,
    p_territory    in varchar2 default null)
The normal approach to creating forms in APEX is to use declarative page items, or to create items dynamically using the apex_item API. APEX knows how to process these items because they are generated with names matching wwv_flow.accept parameters, but not manually created controls with arbitrary name attributes.
Are you planning on doing all of your form submission via AJAX? (I doubt that APEX will be able to natively handle a file browse control with a multiple attribute.) If so, remove the name="myFiles" attribute. You will still be able to access the control in JS using the ID, but APEX won't see it.

Similar Messages

  • LTFS is slow when dealing with many files

    Working with LTFS on Windows 7 64, I find find that it slows down significantly when dealing with many files (>1500)
    From the behaviour, I suspect that it has to do with the number of file handles.
    Some LTFS vendors have a copy utility that deals very well with this situation.
    I could not find anything like that for HP.
    Does it exist? Is there an open source solution?
    Thank you,
    - Bartels

    Can someone from the Experts please respond?
    Your LTFS solution is in certain situations much slower than the competitors; the difference is a huge factor three..
    I would really like to know if there is a solution or not. Either way.
    - Bartels

  • ALV Grid bug when dealing with non-ASCII character

    Dear all,
    I have a requirement to display user's remarks on ALV.  The data element of the remarks column is TEXT200.  I know that each column in an ALV Grid can display at most 128 characters.  Since my SAP is an Unicode system, I expect that each column in my ALV Grid can display 128 Chinese characters, too.  However, the ALV Grid only display 42 Chinese characters at most.  Is this a bug in ALV Grid?  How can I fix it?
    I did a small experiment.  The results are listed below.  My version is Net Weaver 7.01.  The results show that the bug does not exist in ALV List.  However, my user prefers ALV Grid, which is more beautiful and elegant.
    Type of ALV
    Max number of
    ASCII character
    in an ALV column
    Max number of
    non-ASCII character
    in an ALV column
    REUSE_ALV_GRID_DISPLAY
    128
    42 Chinese characters
    CL_SALV_TABLE
    128
    42 Chinese characters
    CL_GUI_ALV_GRID
    128
    42 Chinese characters
    REUSE_ALV_LIST_DISPLAY
    132
    132 Chinese characters
    If you encounter the bug, please post your solution.  Thanks a lot. 

    It looks like limitation of ALV grid cell, which can contain up to 128 bytes in SAP gui.
    Your unicode characters are probably 3 bytes each.
    Check OSS Note 910300 for more detailed info.
    EDIT: Note 1401711 seems to be a correction for your issue It allows to use 128 characters (even if they take more than 128 bytes).

  • Error Code 120 when dealing with locked files

    Here's a weird one.
    I've been moving some files around from drive to drive, and have a small pocket of resistance in the form of three folders, all containing locked files.
    If I "Get Info" on any given file, I'm told that a) the file is locked, which is greyed out, and b) that "You have No Access" under Permissions. Attempting to change the Owner returns the following error message:
    *The operation could not be completed.*
    An unexpected error occurred (error code 120).
    Any ideas? I can't copy the files to their future home, nor can I delete `em. I've Repaired this disk (no errors found) and Repaired Permissions as well, all to no avail.
    Any insight would be appreciated!

    I wonder if the immutable bit has been set? If that is the case, this article by Michael Conniff might help:
    http://discussions.apple.com/thread.jspa?threadID=121976&tstart=0
    The error code you are getting doesn't quite make sense. According to Mac Error codes, 120 means "The version of the "Mac OS ROM" file is too old to be used with the installed version of system software"--which doesn't seem to have anything to do with anything you are doing.
    Francine
    Francine
    Schwieder

  • Howto deal with multiple source files having the same filename...?

    Ahoi again.
    I'm currently trying to make a package for the recent version of subversive for Eclipse Ganymede and I'm almost finished.
    Some time ago the svn.connector components have been split from the official subversive distribution and have to be packed/packaged extra. And here is where my problem arises.
    The svn.connector consists (among other things) of two files which are named the same:
    http://www.polarion.org/projects/subversive/download/eclipse/2.0/update-site/features/org.polarion.eclipse.team.svn.connector_2.0.3.I20080814-1500.jar
    http://www.polarion.org/projects/subversive/download/eclipse/2.0/update-site/plugins/org.polarion.eclipse.team.svn.connector_2.0.3.I20080814-1500.jar
    At the moment makepkg downloads the first one, looks at its cache, and thinks that it already has the second file, too, because it has the same name. As a result, I can neither fetch both files nor use both of them in the build()-function...
    Are there currently any mechanisms in makepkg to deal with multiple source files having the same name?
    The only solution I see at the moment would be to only include the first file in the source array, install it in the build()-function and then manually download the second one via wget and install it after that (AKA Quick & Dirty).
    But of course I would prefer a nicer solution to this problem if possible. ^^
    TIA!
    G_Syme

    Allan wrote:I think you should file a bug report asking for a way to deal with this (but I'm not sure how to fix this at the moment...)
    OK, I've filed a bug report and have also included a suggestion how to solve this problem.

  • How do i deal with multiple iPhoto libraries when migrating to Photos

    how do i deal with multiple iPhoto libraries when migrating to Photos

    I would merge them before the migration.  Also, spend some time doing any batch changes of names and dates beforehand too.
    iPhoto Library Manager has good merge and duplicate search facilities.
    http://www.fatcatsoftware.com/iplm/

  • Premiere Pro 2.0 slows when dealing with larger video files

    I'm having issues with Premiere Pro 2.0 slowing to a crawl and taking 60-90 seconds to come back to life when dealing with larger .avi's (8+ mins). When I try to play a clip on the timeline, drag the slider over said clip, or play from a title into said clip on the timeline, Premiere hangs. The clips on question are all rendered, and the peak file has been generated for each different clip has well. This is a new problem; the last time I was working with a larger clip (45+ mins, captured from a Hi-8 cam), I had no problems. Now, I experience this slow down with all longer clips, although I've only dealt with footage captured from a Hi-8 cam and also a mini-DV cam. This problem has made Premiere nearly unusable. I'm desperate at this point.
    System:
    CPU: P4 HT 2.4ghz
    Ram: 2x 1gb DDR
    Video: ATI Radeon 9000 Series
    Scratch Disk: 250gb WD My Book - USB 2.0 (I suspect this might be part of the problem)
    OS: XP Pro SP2
    I'm not on my machine right now, and I can definitely provide more information if needed.
    Thanks in advance.

    Aside from some other issues, I found that USB was just not suited for editing to/from, and on a much faster machine, that you list.
    FW-400 was only slightly better. It took FW-800, before I could actually use the externals for anything more than storage, i.e. no editing, just archiving.
    eSATA would be even better/faster.
    Please see Harm's ARTICLES on hardware, before you begin investing.
    Good luck,
    Hunt
    [Edit] Oops, I see that Harm DID link to his articles. Missed that. Still, it is worth mentioning again.
    Also, as an aside, PrPro 2.0 has no problem on my workstation when working with several 2 hour DV-AVI's, even when these are edited to/from FW-800 externals.
    Message was edited by: the_wine_snob - [Edit]

  • Working with Multiple Files in Workspace Layout

    If I was working with multiple files in the workspace layout, they each used to be available for selection from a tab.  Now I can either cascade the files horizontally or vertically - but not have them appear in a tab across the top of the workspace layout.
    Does anyone know how to set the workspace to present multiple files in tabs?  I have CS3.

    Tanya,
    This may not help, but the times when that happens to me is when I go too fast and some operations haven't finished. I then try to select a file that hasn't completed and the file I select is in the process of having the data updated. The worst is when it is trying to render as I am doing something.
    I hope this helps some.
    Mel

  • How to get around a performance issue when dealing with a lot of data

    Hello All,
    This is an academic question really, I'm not sure what I'm going to do with my issue, but I have some options.  I was wondering if anyone would like to throw in their two cents on what they would do.
    I have a report, the users want to see all agreements and all conditions related to the updating of rebates and the affected invoices. From a technical perspective ENT6038-KONV-KONP-KONA-KNA1.  THese are the tables I have to hit.  The problem is that when they retroactively update rebate conditions they can hit thousands of invoices, which blossoms out to thousands of conditions...you see the problem. I simply have too much data to grab, it times out.
    I've tried everything around the code.  If you have a better way to get price conditions and agreement numbers off of thousands of invoices, please let me know what that is.
    I have a couple of options.
    1) Use shared memory to preload the data for the report.  This would work, but I'm not going to know what data is needed to be loaded until report run time. They put in a date. I simply can't preload everything. I don't like this option much. 
    2) Write a function module to do this work. When the user clicks on the button to get this particular data, it will launch the FM in background and e-mail them the results. As you know, the background job won't time out. So far this is my favored option.
    Any other ideas?
    Oh...nope, BI is not an option, we don't have it. I know, I'm not happy about it. We do have a data warehouse, but the prospect of working with that group makes me whince.

    My two cents - firstly totally agree with Derick that its probably a good idea to go back to the business and justify their requirement in regards to reporting and "whether any user can meaningfully process all those results in an aggregate". But having dealt with customers across industries over a long period of time, it would probably be bit fanciful to expect them to change their requirements too much as in my experience neither do they understand (too much) technology nor they want to hear about technical limitations for a system etc. They want what they want if possible yesterday!
    So, about dealing with performance issues within ABAP, I'm sure you must be already using efficient programming techniques like using Hash internal tables with Unique Keys, accessing rows of the table using Field-Symbols and all that but what I was going to suggest to you is probably look at using [Extracts|http://help.sap.com/saphelp_nw04/helpdata/en/9f/db9ed135c111d1829f0000e829fbfe/content.htm]. I've had to deal with this couple of times in the past when dealing with massive amount of data and I found it to be very efficient in regards to performance. A good point to remember when using Extracts that, I quote from SAP Help, "The size of an extract dataset is, in principle, unlimited. Extracts larger than 500KB are stored in operating system files. The practical size of an extract is up to 2GB, as long as there is enough space in the filesystem."
    Hope this helps,
    Cheers,
    Sougata.

  • Problem Creating PDF with Multiple Files in Pro. 7

    I'm using Adobe Acrobat Professional 7 on a computer with Windows XP.
    The problem is that when I try to create a PDF with multiple files everything just suddenly stops. There are 75 files involved and when it gets to around 41 or so (don't know the exact number because I turned away from my computer for just a moment), it just stops. There are no error messages; nothing. Just a blank Acrobat screen.
    Last week I had a different problem which was resolved by an uninstall/reinstall and I was able to create the PDF with those exact same 75 files, but after the PDF was created I realised that some changes needed to be made. I dumped the PDF, made the appropriate changes and left it for the weekend. Today I the new problem has arisen.
    Any ideas what the problem might be?

    I've read many discussions about Acrobat and problems with server files, with the general solution being what you are doing... copy the files to a local hard drive

  • How to deal with multiple disk path's

    hi
    i'm setting up a new server with virtual servers with extra io domain's
    now i have a question on how to deal with multiple disk path's
    so following questions:
    - can i enable multipath on the primary and on the alternate domain?
    i tried this but when rebooting the alternate the alternate keep's freezing and the only solution is to hard stop it and it's depending host
    - if i can't enable multipathing how to handle this
    for example a disk has on the primary domain 4 path's to a disk
    do  i then assign all 4 path's to a virtual disk server or do i create a virtual disk server per path
    if i do the first is adding all the path to the same mpgroup enough or not

    Hello
    1.-can i enable multipath on the primary and on the alternate domain?  Yes. i understand for multipath mpxio or similar.
    2.-i tried this but when rebooting the alternate the alternate keep's freezing and the only solution is to hard stop it and it's depending host
    if you are going to use alternate domain you have to give this IO the all bus root nexus, what you describe sounds like DIO,
    3.- - if i can't enable multipathing how to handle this for example a disk has on the primary domain 4 path's to a disk
    If you have 4 path to the same disk in the primary and you are using multipath let's say mpxio, then you will have only one disk in the primary, which is a virtual device that handle the 4 paths.  That's is what you have to use in a vds.
    Please check this doc to see the best practice to ldom
    white-paper-ldom
    regards
    eze

  • Generate Proxy from WSDL with multiple Files

    I need to load a WSDL (to generate a web service consumer proxy). However, that WSDL is build from multiple files, both .wsdl and .xsd, not a single one. It seems the SAP wizard to generate the proxy does expect one single WSDL file however.
    Is there a way in SAP to load a WSDL with multiple files, or do I need to (manually) flatten all these files into one single file?

    I am not sure why it fails in WebSphere. Please try posting
    this question to a WebSphere newsgroup.
    Regards,
    -manoj
    http://manojc.com
    "viswanath" <[email protected]> wrote in message
    news:40aee7fa$1@mktnews1...
    >
    thanks manoj for your reply.
    I'm using IBM WebSphere SDK for Web Services v5.1
    for generation of java client.
    I'm able to generate the client but the problem is
    the WSDl2Java command ignored the SOAPHeaders while
    generating the proxy. Since I'm using SOAP headers for
    authentication the code fails.
    Thanks,
    Viswanath
    "manoj cheenath" <[email protected]> wrote:
    I am not sure which tool you are using
    to generate web service clent. To generate
    a WLS web service client you have to use clientgen.
    Details here:
    http://e-docs.bea.com/wls/docs81/webserv/anttasks.html
    Regards,
    -manoj
    http://manojc.com
    "viswanath" <[email protected]> wrote in message
    news:40ad8a07$[email protected]..
    HI,
    I have a web service (implemented in .NET) which extends soap headersfor
    doing
    Authentication. WSDL is generated out of this web service. But wheni use
    wsdl2java
    (J2EE) to generate a proxy class, there is no interface generated forsoap
    headers.
    Without extending SOAP headers the web service works fine.
    Basically, I'm looking for a way to generate java interfaces (ie.
    proxies)
    for
    SOAP headers out of the WSDL file.
    PFA the WSDL file and the proxy
    Any help on this is appreciated.

  • Very slow responce when working with Office file on DFS-Share

    Very slow responce when working with Office file on DFS-Share
    We have implemented the following configuration
    Domain level Windows 2000. Two member servers with Windows Server 2008 R2, sharing the same DFS namespace with, at the moment, one folder target called Home.
    Users complaining that the access to different MS Office files is very slow. Even creating a new MS Word document using right click context menu takes up to 4 minutes to open. Saving, for example, one singe Excel sheet takes also few minutes.
    Tested with both, MS Office 2007 and MS Office 2010. Makes no difference. When using Office 2010 you can see the message like contacting:
    \\DomainName\Root\Home\UserName. Other files like TXT, JPG or PDF are not affected.
     What makes the thing really weird is the fact, that the behavior described above can absolutely change after client machine being rebooted, suddenly everything becomes very fast and this condition can revert back again just after the next
    reboot.
    Considerations until now:
    1. This has nothing to do with the file size. Even tiny files are affected.
    2. AD Sites are configured correctly and the client workstations see themselves in the correct sites.
    3. This is not an Office issue. If I map my folder target not as DFS, but directly as shared network drive
    \\ServerName\Root\Home\UserName , everything functions as expected
    What makes me suspicious: when using f.e. TCPView to monitor connections, I can see, that each time I make any operation on an office file, there will be a connection established to one of the domain controllers, sometimes to remote ones,
    located in other countries. But on the other side, even if the connection is established to the nearest DC, operations are still very very slow!
    Just forget to say. All clients are Windows 7
    Thanks to all who respond.

    Dear all,
    sorry for the delayed reply. The problem has been solved now and since September 19<sup>th</sup>. everything is functioning as expected.
    What was done:
    Deleted replication targets excepting the initial ones
    Carefully recreated folder targets
    Deleted and recreated  replication groups
    Disabled SNP features on both namespace servers
    Created EnableTCPA registry entry
    Checked that the following Updates are installed
    http://support.microsoft.com/kb/2688074
    http://support.microsoft.com/kb/2647452
    Concering Office File validation KB2553065 - This Update was already declined on our WSUS server
    Kind Regards
    Eduard

  • Create folder with multiple files (was: folders)

    Can you create a folder with multiple files and direct the page to go to the folder and then the reader can select the file they wish to choose?  Example  Council Mintes Folder with a file for each set of minutes.  The hyperlink would open the folder and then the reader would select whch set of minutes they'd like to see.

    You may not have access to it depending on your hosting company and  plan, but if you did have the ability to change it you'd normally do it in the admin area of your hosting account which would update the proper files on your server.
    You may also be able to do it manually, but the "how to" depends on the server type you are running.
    EDIT: I'd still suggest using a server script (like the PHP I linked to) because the look of a directory with browsing turned on is pretty ugly and can't be changes since it's not a page on your site. With the PHP I linked to, you could have an actual page for your links, complete with your site's design, that simply lists the files from the specified directory. It's very simple to set up if you have PHP on your server.

  • How i can deal with oracle file by using php api

    how I can deal with oracle file by using php api ?

    What has this to do with Reflections and Reference Objects?

Maybe you are looking for

  • How to test the app on my Ipad device?

    I'd like to know how to test the app and if it's strictly necessary to have a developer liscense to test it or if it's only necessary to make the app available in the Appstore. Thanks!

  • Successfully Imported photos to iPhoto are gone!

    Dear Apple, Today I imported photos to iPhoto. It said "import successful". Followed by: "Do you want to delete your photos?" I choose "Yes." like I usually do. I never before had an issue with this, that is until today! Shortly after choosing "Yes"

  • Purple defringe set to +1 by default?

    After installing LR 4.1 RC2 I noticed that the new defringing was set to +1 for purple on many (but not all) my 7D raw files. Has anyone else noticed this/similar behaviour?

  • How to create LR (2.*) web templates? Hi

    Hi, I make my web sites with Dream weaver. I want to create templates for LR2 in dream weaver so they have the same look and feel as my own web site. Any ideas who this can be done?   The LR web template method can not be that secret? Regards   Chris

  • Performance of Flex reflection

    Has anyone seen or known the performance issues when openning the Flex web sites that are based on reflection? I know, in general, reflection would hurt performance, but just do not know how bad it is in Flex and ActionScripts.