APEX-AT-WORK no image

Open Windows directory with APEX (IE only)

Von Tobias Arnhold 4.12.2010
All you need to open a MS file system folder with APEX is this little javascript:
Header part

<script type="text/javascript">
function fnc_window() {w = open('C:\\Users', "winLov","scrollbars=yes,resizable=no,width=600,height=400");
if (w.opener == null)
w.opener = self;
}
</script>

Open window on page load

<body onload="javascript:fnc_window()">

About a comment from Carsten
Dies ist das richtige Select:
SELECT '\\apc' || pcnummer || '\c$' as LINK FROM table....;
Interessante Idee!

Post Tags: