Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要将程序中的文本添加到 Edit01,例如 memo01:
memo1.Lines.Add(inttostr (b));
我有 f 作为整数,我需要将它添加到 edit01。
是TEdit单行编辑器,因此没有Lines属性,您必须Text改用:
TEdit
Lines
Text
Edit01.Text := IntToStr(f);