Hi.
Is there a way to access the FB options from inside a FB Project? I.e. I'd like to access the "NCover location".
Yours,
Nils
Hi.
Is there a way to access the FB options from inside a FB Project? I.e. I'd like to access the "NCover location".
Yours,
Nils
Hi Nils
Yes, you will need to use some script (VBScript in this example )
dim opt
Set opt = GetOptionsObject(“NCover”)
if not (opt is nothing) then
msgbox opt.Properties.NCoverPath
msgbox opt.Properties.NCoverExplorer
end if