"mattk" <mattkreuter@kmc-controls> wrote:
>I am using TColorDialog. I would like to be able to change the caption so >the user has some clue as to what they are doing ..... >Is there a way to change the caption on this ? >ColorDialog1.Caption := 'test'; // does not work ....
TColorDialog has an evbent handler called OnShow. In there, write:
with Sender as TColorDialog do SendMessage(Handle, WM_SETTEXT, 0, Longint(PChar('test);
Good luck.
Kurt