Search results

  1. Shawn0001

    HEScript/Javascript How to Save To And Read From Text from a textarea

    Could I still get some help on this, having some trouble with it
  2. Shawn0001

    HEScript/Javascript How to Save To And Read From Text from a textarea

    when I change S := GetGlobalVar(“HEPubStorageLocation”, “”); to S:= GetGlobalVar(“HEPublicationPath”, “”); also, so it saves where the program is… I have also changed S2 := GetFormContents; to S2 := GetFormFieldValue; Does Not Work Either from Documentation? would it be GetFormControlValue...
  3. Shawn0001

    HEScript/Javascript How to Save To And Read From Text from a textarea

    Having trouble saving and reading text files from a text area in an html page. Found this: uses Classes; //Add this to the top of the script procedure WriteTextToFile(Filename, Contents: String); var T: TStringList; begin T := TStringList.Create; // Sets the contents. T.Text := Contents; //...
Back
Top