7

while changing software development from VCL frame work to Firemonkey, I can not understand where is the TPagecontrol component gone from the good old VCL framework.

I already placed a TTabControl on my Form and added several Tabitemn, bit now I can not find the replacement for the TPagecontrol.

Marcus Adams
  • 53,009
  • 9
  • 91
  • 143
Franz
  • 1,883
  • 26
  • 47

1 Answers1

14

You can take Firemonkey's TTabControl as a replacement for VCL's TPageControl. Their tabs are containers just like everything else in Firemonkey (so unlike the VCL's TTabControl their tabs are real containers).

enter image description here

TLama
  • 75,147
  • 17
  • 214
  • 392
  • OK, thanks for this Info. I placed a Tmemo on the first TTablControl but could see is on all TTabscontrols. Will now check on the problem – Franz Nov 26 '13 at 14:55
  • 3
    Show the structure pane in your IDE (SHIFT + ALT + F11). It is certainly a must to have it shown for designing Firemonkey applications. There you will clearly see where the memo is really placed and there you can optionally "drag" it to the tab item. – TLama Nov 26 '13 at 15:34