Have a new project with one action to compile a Delphi 10.2 project. Everything looks OK, but when I run it, I’m getting a “An unhandled exception (‘Type mismatch: ‘Action.MajorVersion’’) occurred in FinalBuilder8.exe [600864].”
This was action was copied from another project and then tweaked. I created a new action that is basically the same and it works. Comparing the DSL, I see
action.script
begin
name = BeforeAction
script >
beginscript
Action.MajorVersion = VERSION1_MAJOR
Action.MinorVersion = VERSION2_MINOR
Action.ReleaseVersion = VERSION3_RELEASE
Action.BuildVersion = VERSION4_BUILD
endscript
scriptlanguage = VBScript
end
in the one that fails. Defining the variables make the error go away. However, I cannot find where in the action dialog tabs that this is accessible to remove/edit/etc. Is it an artifact from FB7? Reporting this since a more user friendly error than an unhandled exception is probably desired.