Access violation in ParaRVFrm
Posted: Wed Jun 25, 2014 6:36 pm
It's possible to create a TfrmRVPara and pass nil to both constructor arguments. Unfortunately, there are several methods that assume that ControlPanel (the second parameter above) <> nil.
From looking at related code, it appears that this can be remedied by adding the following to FormCreate, before the first call to UpdateLengthSpinEdit (which is one of the methods that will crash otherwise):
if ControlPanel=nil then
ControlPanel := MainRVAControlPanel;
From looking at related code, it appears that this can be remedied by adding the following to FormCreate, before the first call to UpdateLengthSpinEdit (which is one of the methods that will crash otherwise):
if ControlPanel=nil then
ControlPanel := MainRVAControlPanel;