To make the file selector open faster, the UseHardDriveOnly parameter is set to 1 by default, which only displays hard drives in the file selector.
If you wish to make the floppy drives available in the file selector, simply add the UseHardDriveOnly parameter with a value of 0 within the Applet tags of the UploadClient, as in the following example:
<APPLET code="softartisans.filetransfer.UploadClient.class"
height="500" width="500" mayscript archive="filetransfer.jar" name="fileupload">
<PARAM name="cabbase" value="filetransfer.cab">
<PARAM name="PostURL" value="http://www.somewhere.com/formresp.asp">
<PARAM name="UseHardDriveOnly" value="0">
</APPLET>
|