0
I have a form that displays a side menu according to this code:
procedure TFMainMenu.FormMouseMove(Sender: TObject; Shift: TShiftState; X,
Y: Integer);
begin
PanelMenu.Visible := (Mouse.CursorPos.X < FMainMenu.Width -(0.95*FMainMenu.Width) )
end;
The problem is that when the form is not "full screen", this side menu does not appear using this function. Any suggestions?
PS: The Mainmenu is a form Father and the form that is created when I click on its menu button inherits the form Father
The problem is that the ideal is that the screen does not get full screen 100% of the time
– Tiaurls