wwSearchDialog Top and Left Position
Hi,
Is there a way to set the Left and Top Position of the Search Dialog.
I have tried to figure out, but cannot workout what the property would be where I could set the Point Values.
Thank
Trish
-
Bit crude, I did the following. - I have all my forms on activation take on the MainForm State so works for the moment. The Text box I want it to appear over is at the Position of Left: 30 and Top 30.
var ScrLeft, ScrTop: Integer;
begin
ScrLeft := frmMain.Left;
ScrTop := frmMain.Top;
Dialog.Left:= ScrLeft + 40;
Dialog.Top:= ScrTop + 40;
end;
Please sign in to leave a comment.
Comments
1 comment