Well, to create a TEdit
you need to do the following:
Create a variable to work with. Either a local variable or a class member.
Edit: TEdit;
Then you construct it.
Edit := TEdit.Create(Self);
The parameter to the constructor is the owner. This ensures that the control is destroyed when its owner is destroyed. My assumption is that Self
is a form.
Now you need to give the control a parent.
Edit.Parent := Self;
Or perhaps it's on a panel.
Edit.Parent := StatusPanel;
Finally, you set the text.
Edit.Text := SQLQuery1['whom']);
With a label it's all very similar except that you use the Caption
property rather than the Text
property.
And you will surely want to set other properties but I guess you already know how to do that.