|
|
|
|
|
NameBrowserFile (Property) In french: NomFichierNavigateur
The NameBrowserFile property gets the original name of the file to upload from the user's computer. This property is only available for multi-file Upload controls.
FOR i = 1 _TO_ UPL_Upload.Occurrence
UploadCopyFile(UPL_Upload, gsCheminFichiersUploadés, "", i)
Trace(UPL_Upload[i].NomFichierNavigateur, UPL_Upload[i].NomFichierServeur)
END
Syntax
Getting the original name of the file to upload from the user's computer Hide the details
<Result> = <Upload control>[<File ID>].NameBrowserFile
<Result>: Character string Original name of the uploaded file (i.e. file on the user's computer). <Upload control>: Control name Name of the Upload control to be used. <N>: Integer Number of the file in the Upload control.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|