void __fastcall TForm1::FormMouseMove(TObject *Sender, TShiftState Shift,
int X, int Y)
{
Height = 150;
}
// ACA DEBES IMPLEMENTAR
//---------------------------------------------------------------------------
void __fastcall TForm1::ApplicationEvents1Message(tagMSG &Msg,
bool &Handled)
{
if( Msg.message == 160)
{
Height = 50;
}
}
//--------------------------------------------------------------
-------------