gonzalesc
New member
Hi.
I followed this guide: http://www.exeoutput.com/help/choosingfilesupload
I put the code in UserMain:
And in my view, put the link:
Then, when click in the link a file browser opens. is cool !
But I need save the path that I selected in the input text called path_doc.
Could you give me a clue how to do it please?
I followed this guide: http://www.exeoutput.com/help/choosingfilesupload
I put the code in UserMain:
Code:
function OpenDlgFile: String;
begin
Result := OpenFileDialog(“Select a File to open”, “.”, “.”, “All files (.)|.”, “”);
end;
<input type="text" id="path_doc" name="path_doc" value="" /> <a href="hescript://UserMain.OpenDlgFile">Browser</a>Then, when click in the link a file browser opens. is cool !
But I need save the path that I selected in the input text called path_doc.
Could you give me a clue how to do it please?

