Hello
Would like to pass e.g. Edit.Text or ComboBox.Text or ComboBox.Items as a var into e.g.
Procedure DefineMyComponents(var Edit.Text : String;
var Box.Text : Sting;
var Box.Items : Tstrings);
by calling it e.g. with...
Hi
With an ABSOLUTE-declaration it is possible that two different arrays share the some storage space, e.g. like
NumberSequence : Array [0..9] of Integer;
FirstPart : Array [0..4] of Integer ABSOLUTE NumberSequence[0];
Note, both arrays are starting here from zero.
Now, how could it...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.