Recent content by gonzalesc

  1. gonzalesc

    Catch the complete PATH using OpenFileDialog()

    Cool !! It Works. Thanksss! In the documentation, the function “GetHEScriptCom” has “none” as second parámeter: Regards
  2. gonzalesc

    Open a external File, a TXT

    COOL !! it works! Thanks for support.
  3. gonzalesc

    Catch the complete PATH using OpenFileDialog()

    Yes! I tried with “hescript://” but nothing. The alert “test1” and “test2” works but the dialog window doesn’t open. Please, some idea? Or is there any other way to do it using JS?
  4. gonzalesc

    Open a external File, a TXT

    Okay, I do not understand the examples. Here it says “Accessing external files …” but it accesses to TXT into DATA using DOCUMEN_ROOT. That is to say, it is an internal file, it is not an external file. external843×407 54 KB If my app is in C/:PRG/DATA/RUN.exe, Can I open a TXT in...
  5. gonzalesc

    Catch the complete PATH using OpenFileDialog()

    Hi. That was just a writing error. I have my function in UserMain: function OpenDlgFile: String; begin Result := OpenFileDialog("Seleccion el fichero", "*.txt", "*.txt", "Text FIles (*.txt)|*.txt", ""); end; My JS is: function clickopen() { alert('test 1')...
  6. gonzalesc

    Catch the complete PATH using OpenFileDialog()

    Ok I tried with: “hescript://” exeoutput.GetHEScriptCom('hescript://UserMain.OpenDlgFile', 'none', DemoCallback); But it were the same. It doesn’t do nothing. Regards
  7. gonzalesc

    Open a external File, a TXT

    Ok I understand that with “heopenit://” I can open files in my folder DATA but in this case, I want to open files in others paths, in differents paths. I think I must do a copy of this file in my DATA path for I can open it, is it okay? I will copy it in my app folder and I could called : <a...
  8. gonzalesc

    Catch the complete PATH using OpenFileDialog()

    Hi. Thanks for replying. Ok I have the code: function SaveDlgFile: String; begin Result := SaveFileDialog("Guardar como", ".txt", ".txt", "Text Files (.txt)|.txt|All files (.)|.", ""); end; and I tried do it: <a href="javascript:clickopen();" class="btn btn-primary">Browser</a>...
  9. gonzalesc

    Catch the complete PATH using OpenFileDialog()

    Hi. I followed this guide: http://www.exeoutput.com/help/choosingfilesupload I put the code in UserMain: function OpenDlgFile: String; begin Result := OpenFileDialog(“Select a File to open”, “.”, “.”, “All files (.)|.”, “”); end; And in my view, put the link: <input type="text" id="path_doc"...
  10. gonzalesc

    Open a external File, a TXT

    Hi. I need open a document in my local computer using my app. I tried: <a target="_heopenit" href="D:\Dropbox\work example\source\uploads\document.txt">Open Documentation</a> <a target="_heopenit" href="heopenit:D:\Dropbox\work example\source\uploads\document.txt">Open Documentation</a> In...
Back
Top