ChupaChups
Programmer
I need to show non-modal form over the main application form so as the former could not be overlapped by the latter (i.e. like 'Find' dialod)
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
procedure showmymodalform;
var mymodalform: tmodalform;
...
begin
mymodalform:=tmymodalform.create(self);
mymodalform.showmodal;
end;