Results 1 to 2 of 2

Thread: Do you know: file extensions (thinBasic)

  1. #1
    thinBasic author ErosOlmi's Avatar
    Join Date
    Sep 2004
    Location
    Milan - Italy
    Age
    57
    Posts
    8,777
    Rep Power
    10

    Do you know: file extensions (thinBasic)

    thinBasic file extensions_________________________________________________
    thinBasic script files can mainly have 2 file extensions: .tBasic, .tBasicc
    • *.tBasic scripts will be executed by thinBasic.exe and are used for all kind of scripts except the one handling CGI (web server side scripting).
    • *.tBasicc scripts will be executed by thinBasicc.exe and are console scripts. A console window will be immediately created even if the script will not use it.


    Even if .tBasicc script are automatically handled by thinBasic Console engine, do not confuse it with the possibility to work with text-only console. You can always create a console window and use the many console commands just adding
    [code=thinbasic]USES "Console"[/code]
    in your script (whatever extension it will have). The above command will tell thinBasic engine you want to work with a text-only console. A new console window will be attached to current process.
    *.tBasicc scripts are best suited for applications that need standard output handling like CGI scripts or scripts passing output to other process to be handled.

    There are other 2 extensions used for obfuscated scripts. They are the same as previous one but with an x at the end: .tBasicx, .tBasiccx
    More info on thinBasic obfuscation can be found at http://www.thinbasic.com/public/prod...bfuscation.htm
    www.thinbasic.com | www.thinbasic.com/community/ | help.thinbasic.com
    Windows 10 Pro for Workstations 64bit - 32 GB - Intel(R) Xeon(R) W-10855M CPU @ 2.80GHz - NVIDIA Quadro RTX 3000

  2. #2
    yes you are right 100 percent File extension exist two forms and you also explain it very well here

Similar Threads

  1. openGL extensions
    By kryton9 in forum TBGL General
    Replies: 9
    Last Post: 07-06-2007, 01:20

Members who have read this thread: 0

There are no members to list at the moment.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •