Reputation: 7238
sorry this may be a simple question
i want to call a bpl and get the value of a string inside the pakage
where and how can i declare a constant(or variable) and how to call it by a delphi exe
Upvotes: 0
Views: 254
Reputation: 84550
As long as the string constant is declared in the interface section of one of your units, you can just refer to it by name, the same as if the unit was compiled directly into your app.
Upvotes: 2