The T-Script Embedded Scripting Library

TScript is a small lightweight user friendly scripting language at allows users of both the Texas Business Software Suite and ObjectDatabase++, to make those minor customization to their own installation. This enables Ekky Software to provide its customers a high level of flexibility to all their particular requirements and also empowers our customers to make their own decisions.

The TScript language has been designed and developed to be an embeddable scripting language for native C++ code. The main criteria for TScript is to allow functionality to be added to the Texas Business Software suite post installation and have that extended functionality intractable with the original C++ code.

A Basic "Hello World" TScript

CTScript ts;
ts.SetParameter(CTScript::SOURCE_STRING,0,L"main(){
   System::MessageBox(L\"Hello World\");
}");
ts.ExecuteStaticMethod();