Search code examples
delphidelphi-7

How to get to the elements on a page control?


I'm working with Delphi 7.

Suppose I have a page control on my form. This page control has two or three tabs. Each tab has a few other controls like a label, edit etc. on it. How to get, for example, to an edit's text property in the code?


Solution

  • You can still directly access the TEdit

    Edit1.Text := 'My Edit box on a Tab';