[Home]
[Edit this page]
[Recent Changes]
[Special Pages]
[Help]
CppBuilderWhatDoesEverythingMean
There are two ways to add functionality to this TForm:
[Edit this page] [Page history] [What links here] [Discuss this topic] [Printer Friendly]
CppBuilderWhatDoesEverythingMean
(C++ Builder) What does everything mean?
At the start C++ Builder you see the following:- On the top-right, you see the Component Palette.
- On the bottom-left, you see the Object Inspector.
- On the middle-left, you see the Project Manager
- In the center, you see a Form.
There are two ways to add functionality to this TForm:
- Drag-and-drop Components and fill in their Events. Only what happens in those Events needs to be written.
- Add a function declaration at the public or private section of TForm1 in Unit1.h (VCL). Then give its definition in Unit1.cpp (VCL).
[Edit this page] [Page history] [What links here] [Discuss this topic] [Printer Friendly]
