TLabel and TPanel

ESPL supports TLabel and TPanel objects.   Here is an example to get you started, illustrating what you would like to accomplish with the User Study buttons to realign, resize, and relabel them.   You can get the names of our label and panel objects in the ESPL Help documentation.

begin
  pnlStudies.height:=420;               {change study panel height}
  lblESPLStudy.visible:=false;          {hide the ESPL Study label}
  btnStudy51.left:=3;                   {change various button properties}
  btnStudy51.width:=50;
  btnStudy51.caption:='Special';
  btnStudy52.left:=3;
  btnStudy52.width:=50;
  btnStudy52.top:=btnStudy51.top+btnStudy52.height;
  btnStudy52.caption:='Private';
end;