Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Which one Works first

Status
Not open for further replies.

zerocoder

Programmer
Aug 23, 2007
1
TR
I am newbie, especially in the case of borland. I have to understand a program but something make it dificult to understand.
The program has two method one is constructor,
__fastcall TForm1::TForm1(TComponent* Owner)
: TForm(Owner)

Other is Formcreate

void __fastcall TForm1::FormCreate(TObject *Sender)

which one works firstly, the constructor or formcreate event could u give me information. Thanx you in advance
 
The constructor is the first, it runs when the program is started.

The "FormCreate" is run when the form comes from invisibel to visibel.

Totte
Keep making it perfect and it will end up broken.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top