I didn't resolve my issues the way I wanted to. But thank to suggestions, and generous insights posted by Vahan, Rob and Dave, I could find a way around, saving myself a big chunk of time.
I just codified the OnEnter and OnExit events of one control, and linked the rest of the other controls with those 2 procedures. I could achieve that by using a "type casted" object of the control, instead of the control name: procedure TForm1.Edit1Enter(Sender: TObject); begin (Sender as TEdit).color:=clCream; end; procedure TForm1.Edit1Exit(Sender: TObject); begin (Sender as TEdit).color:=clWhite; end; Thank you, guys! Emmanuel ----------------------------------------------------- Home page: http://groups.yahoo.com/group/delphi-en/ To unsubscribe: [EMAIL PROTECTED] Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/delphi-en/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/

