Vibeeshan Mahadeva
Vibeeshan Mahadeva

Reputation: 7248

is there any way to interpret pascal in Delphi applications

i want my own pascal code to be executed it also have some uses files and other complex functions just like a Delphi code can i do this

Upvotes: 3

Views: 1372

Answers (6)

LachlanG
LachlanG

Reputation: 4087

TMS has both a scripting engine and a scripting IDE product.

Upvotes: 1

LachlanG
LachlanG

Reputation: 4087

There's also paxCompiler

Upvotes: 2

Jeroen Wiert Pluimers
Jeroen Wiert Pluimers

Reputation: 24523

Delphi Web Script is now under active development again.
Previously it was good; now it is becoming great.
You can download it on Google Code.

--jeroen

Upvotes: 6

skamradt
skamradt

Reputation: 15548

Another option, which is useful if you want to support more than just Pascal syntax, would be Fast-Script by the makers of Fast-Report.

Upvotes: 3

JamesT
JamesT

Reputation: 3028

Depends how much pascal you want to interpret. Pascal Script will interpret most stuff but you can't declare classes in a script (You can however import them using script functions). You can't use "uses" clauses either.

If you want to do full on pascal support you're going to have to compile it. You could probably use the FreePascal one providing your app's licensing is compatible (GPL).

Upvotes: 1

Andreas Rejbrand
Andreas Rejbrand

Reputation: 109158

Yes:

This component is used in the highly popular Inno Setup installer software.

Upvotes: 10

Related Questions