Thanks, Bluehazzard and Morten. I tried 2024, 2023, 2022, and 2021. To no avail. I used 'codeblocks' for the name of the ide. However, about a second ago, it finally went through. I don't know what was different, except that I brought up another captcha image 2 times. The second time was the charm. Thanks, everyone. Please close the ticket.
Thanks, Bluehazzard and Morten. I tried 2024, 2023, 2022, and 2021. To no avail. I used 'codeblocks' for the name of the ide. However, about a second ago, it finally went through. I don't know what was different, except that I brought up another captcha image 2 times. The second time was the charm. Thanks, everyone.
Cannot register for the Code:Blocks forum, and there's no way of contacting them
Hi Anthony, Not sure if you're still struggling with this. But there's a nice treepad-style app, at Eric's site https://www.ericbt.com/vault3. The cool thing is that you can easily use the same pim (a Sqlite database) on an Android app. It's also been updated much more recently than JReePad. Sorry you were having problems getting help, back in July.
Answer: Set these environmental variables to the path of the Editor and Viewer executable: EDITOR VIEWER
Hi, I understand how to use the internal viewers/editors, and how to specify that we don't use those. But Notepad is the default, if we don't use the internal tools. How do we specify our own internal tools?
In case anyone needs the sample, here are some snippets from the JScript code: Contents of script.txt: ls bye Command_Line = "psftp thisserver@sftp.thisdomain.com -P <port> -pw thispassword -b script.txt" Folder_to_Check = "thisfolder" try { var WshShell=WScript.CreateObject("Wscript.Shell") var ExecReturn = WshShell.Exec(Command_Line) while (ExecReturn.Status == 0) { WScript.Echo("Waiting .... ") WScript.Sleep(1000) } // Check status code ReturnCode_n = ExecReturn.ExitCode //To confirm the connection...
A return code of 0 means successful. https://stackoverflow.com/questions/41725928/putty-psftp-return-codes