Using Delphi 2010
SQLQuery1.First; // move to the first record
while(not SQLQuery1.EOF)do begin
// do something with the current record
// What's the code should i write in this part in order to create a TEdit
// containing the user fullname the current item.
ShowMessage(SQLQuery1['whom']);
SQLQuery1.Next; // move to the next record
end;
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.
Then you construct it.
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.
Or perhaps it's on a panel.
Finally, you set the text.
With a label it's all very similar except that you use the
Caption
property rather than theText
property.And you will surely want to set other properties but I guess you already know how to do that.
The bit that catches people out is setting parent.
You can also design the components visually, use the GExperts Components to Code expert on them and then delete them from the form designer again. For a label/edit pair this gives something like
Most of the times it needs some reworking (remove the TabOrder lines, replace the Left/Top/... stuff by SetBounds, Align or your own logic, ...) and for some properties/components it doesn't work at all. But you can save a lot of time that way.