Re: Changing Application.Title
Chris L. wrote:
Is it possible to change the Application.Title at run time?
procedure TForm1.Button1Click(Sender: TObject);
begin
application.Title:='new title';
end;
When I use showMessage() for my error messages, it always displays the
application.title (defined in the project source file) as the caption of the
message form. I want the caption of the application of certain messages to
say something other than the application title.
Or, just use Application.MessageBox instead of ShowMessage, which allows
you to specify a title for the box...
.