<< Click to Display Table of Contents >> Navigation: »No topics above this level« Getting started |
Simplest example of how to use THtScriptParser:
uses htscriptparse, htscriptgui;
...
procedure TForm1.ButtonClick(Sender: TObject);
var SP: THtScriptParser;
begin
SP := THtScriptParser.Create('ShowMessage(''test'');');
try
SP.Run;
finally
SP.Free
end;
end;