Acces Script variables from Delphi

edited 9:51PM in FastScript
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)

Comments

  • edited 9:51PM
    var
    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
  • edited 9:51PM
    WOW!

    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

Leave a Comment

Rich Text Editor. To edit a paragraph's style, hit tab to get to the paragraph menu. From there you will be able to pick one style. Nothing defaults to paragraph. An inline formatting menu will show up when you select text. Hit tab to get into that menu. Some elements, such as rich link embeds, images, loading indicators, and error messages may get inserted into the editor. You may navigate to these using the arrow keys inside of the editor and delete them with the delete or backspace key.