Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Recent content by thorsten

  1. T

    Fixed Echo randomly activated in script

    "echo ``" s the equivalent of "echo." in TCC according to the documentation. It just echoes an empty line (in case I misinterpreted Rex' question).
  2. T

    Fixed Echo randomly activated in script

    It's stripped down from a "shell selector" batch script: @echo off setlocal & setdos /g., /x0 on errormsg quit 1 on break quit 1 unalias * & unfunction * set config_=%@path[%_batchname]%@name[%_batchname].ini :: disable audible beep for input option //BeepLength = 0 cls /c echo Enter shell...
  3. T

    Fixed Echo randomly activated in script

    In the following snippet, echo is randomly activated (in this case on the fifth iteration): @echo off do index = 1 to 1000 :: disable audible beep for input option //BeepLength = 0 echo `` echo %index delay 1 enddo Loop, index, and delay are just to demonstrate the...
  4. T

    How Do I Get Rid of 'Everything'

    Everything just needs to be running. It doesn't matter if the portable version or the one that comes with TCC. But don't run it simultaneously.
  5. T

    Easier INI handling

    Right now you can get only one specified value back with @iniread which forces you to specify all keys for a section you want to retrieve. For my scripts I normally want all values for a section and use the keys as variable names. I suggest such a command which sets theses variables: Example...
  6. T

    Done Minimum number of characters for input

    Rex suggested to post this here: inkey does not accept empty answers ("just Enter"). I'd like to have the same functionality (maybe a "minimum number of characters" option) for the input command. Thorsten
  7. T

    @select and @selectarray issues

    It's not a SSH session; I simply find the switch between command line to GUI and back for history buffer and alike irritating.
  8. T

    input accepts empty answer

    The problem here is the EMPTY Enter. I suggest a minimum length parameter (input already has a maximum length parameter)
  9. T

    @select and @selectarray issues

    1. The documentation for @select and @selectarray says "If the specified width is < 150 [...]" - yet neither select nor selectarray take a width parameter 2. @selectarray (and probably @select) don't work correctly when "ConsolePopupWindows=yes". Variables select_line and _select_key are not...
  10. T

    input accepts empty answer

    I can confirm this: inkey does not accept while input does accept an empty answer. Thread title adjusted.
  11. T

    Disable audible beep on input and inkey

    Actually I was mistaken: the error happened in an interactive script and I used TCC_RT as executing shell. That's why it didn't pick up the settings of my interactive shell. "option //BeepLength = 0" made the beep silent.
  12. T

    Disable audible beep on input and inkey

    The documentation says "to disable all error beeps set the length and frequency to 0. If you do, the BEEP command will still be operable, but will not produce sound unless you explicitly specify the frequency and duration." Nevertheless inkey and input beep very loudly. How can I make input and...
  13. T

    input accepts empty answer

    input and inkey accept empty answers ("just Enter") even when /k sets the valid keys ("input /k"::^[yn]$" Database type: %%database_type" for example). Is there a way to prohibit the empty answer?
  14. T

    TCHelp executable history?

    TCMD 21's help comes as a CHM file. Does that mean that v20's tchelp.exe is history?
  15. T

    404 trying to download RT

    ...works now...
Back
Top