Subject Re: [IBO] Parameter in Script?
Author Paul Vinkenoog
Hi Don,

> Is it possible to use a parameter in a script?
>
> Can the table name of a "Create Table" statement be a parameter?

The script as such can't have parameters, but in a TIB_Script you can
use text macros, e.g.

create table <<table_name>> ...

You have to process the macro in the OnMacroSubstitute event. Since
it's all done within IBO your macroed script won't work in any other
environment! I've once made an app with a heavily macro-laden create
script and it worked nicely.


Greetings,
Paul Vinkenoog