How to declare Record that can be used in all forms?
For example... The Record I would like to create is ...
Type
TMyrec = record
Name:string;
Value:integer;
end;
For Form1 ... I will have the variable
and For Form2 ... I will have ...
Where I should put the declaration code "Type ..." in?