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...
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;
//...