dumpz3best
Турист
- Credits
- 0
Есть у кого такой madCodeHook, чтобы можно было установить в Delphi 2009?
Есть у кого такой madCodeHook, чтобы можно было установить в Delphi 2009?
Еще вопрос.
Посоветуйте (а лучше выложите) компоненты, позволяющие встроить поддержку скриптов в свое приложение. Желательно скриптов на pascal или javascript, но если таких нету, любые подойдут.
Using TPaxScripter you can
. Import Delphi classes routines, constants, and variables.
. Import Delphi units automatically with paxScript Importer.
. Convert dfm-files into the paxPascal scripts.
. Call script-defined functions.
. Save/Load compiled scripts to/from a stream.
. Unite source code modules and compiled (binary) modules in your script project. Moreover, you can
add full compiled script to the script project.
. Build the code explorer tree.
. Customize compilation process and error handling.
. Use scripter in the debugger mode (breakpoints, step into, trace over, run to cursor). The component
comes with full source code of paxScript IDE, so you can use it as a base to develop your own integrated environment.
Pascal Script is a free scripting engine that allows you to use most of the Object Pascal language within your Delphi projects at runtime. Written completely in Delphi, it's composed of a set of units that can be compiled into your executable, eliminating the need to distribute any external files.
Pascal Script includes the following features:
Variables, Constants
Standard language constructs:
Begin/End
If/Then/Else
For/To/Downto/Do
Case x Of
Repeat/Until
While
uses
Exit
Continue
Break
Version 2.10 (23.09.2009)
* CodeGear RAD Studio 2009 support
* Other fixes and small improvements
Version 10.8.4 (23/9/2008)
+ added Delphi 2009 (Unicode) compatibility
* bug fixes