I opened this demo in Delphi Seattle and it works like it should.
When I open my program, and include the demo form it doesnt work. I cannot add hints to my controls.
procedure TMainForm.FormCreate(Sender: TObject);
application.ShowHint:=true;
application.OnHint :=OnApplicationHint;
end;
procedure TMainForm.OnApplicationHint(Sender: TObject);
begin
caption := (Application.Hint);
end;
My program is converted from XE7 to Seattle. So what could be the difference?
Where can i find the code that actually shows the hint??