Acces Script variables from Delphi
There must be a a way to do this...
After a script has run, I need to iterate through the list of variables and save their names and values in a database. The only example of access shown in the help relies on you already knowing the name of the variable
( TheValue:=Variables)
After a script has run, I need to iterate through the list of variables and save their names and values in a database. The only example of access shown in the help relies on you already knowing the name of the variable
( TheValue:=Variables)
Comments
v: TfsCustomVariable;
for i := 0 to fsScript1.Count - 1 do
begin
v := fsScript.Items;
if v is TfsVariable then
addtoyourdatabase(v.Name, v.Value)
end
In less than 36 hours I've downloaded trial version, completely re-written our app to use FastScript (replacing a very different and very clumsy component), purchased and received the full version, hit only 1 problem, posted a help request, and had a useful reply!
Thanks
Roj