Lazarus
Home
Help
TinyPortal
Search
Login
Register
Lazarus
»
Forum
»
Programming
»
LCL
»
[SOLVED] Fullscreen
Free Pascal
Website
Downloads
Wiki
Documentation
Bugtracker
Mailing List
Lazarus
Website
Downloads (Laz+FPC)
Packages (OPM)
FAQ
Wiki
Documentation (RTL/FCL/LCL)
Bugtracker
CCR Bugs
GIT
Mailing List
Other languages
Foundation
Website
Useful Wiki Links
Project Roadmap
Getting the Source
Screenshots
How to use the forum
About donations (wiki)
Bookstore
Computer Math and Games in Pascal
(preview)
Lazarus Handbook
Search
Advanced search
Recent
UK's Online Safety Act
by
MarkMLl
[
Today
at 09:54:50 am]
Lazarus Release Candidate...
by
Martin_fr
[
Today
at 09:12:26 am]
Result not being set in c...
by
Martin_fr
[
Today
at 09:05:09 am]
The Silver Coder on YouTu...
by
silvercoder70
[
Today
at 08:23:31 am]
Copying records with dyna...
by
ASerge
[
Today
at 08:17:08 am]
Resolving procedure symbo...
by
440bx
[
Today
at 07:59:10 am]
[AI][Machine Learning] Te...
by
hshatti
[
Today
at 06:34:31 am]
Guide Lines Behavior
by
majolika
[
Today
at 06:11:12 am]
Trying to save an Animate...
by
zxandris
[
Today
at 04:58:36 am]
Trying to Write, Readable...
by
zxandris
[
Today
at 04:05:35 am]
LCL Web Native with D2Bri...
by
talisjonatas
[
Today
at 01:58:42 am]
TDBEdit uneditable
by
korba812
[
Today
at 12:19:36 am]
constref and assembler x6...
by
ASerge
[January 24, 2025, 11:50:46 pm]
Synedit wordwrap
by
Martin_fr
[January 24, 2025, 10:26:36 pm]
application->terminate ma...
by
MarkMLl
[January 24, 2025, 09:42:14 pm]
Lazarus Bugfix Release 3....
by
Martin_fr
[January 24, 2025, 09:38:45 pm]
Drawing with psInsidefram...
by
Jonny
[January 24, 2025, 08:20:18 pm]
AVRPascal – free code edi...
by
ackarwow
[January 24, 2025, 07:49:52 pm]
Threads window (in Debug ...
by
erol
[January 24, 2025, 06:31:17 pm]
Help with tablayout.getti...
by
Narciso
[January 24, 2025, 05:29:43 pm]
مشكلة في التقارير
by
Gebo
[January 24, 2025, 05:25:14 pm]
Conditional variable defi...
by
TRon
[January 24, 2025, 04:50:00 pm]
Problem with TTabControl
by
MISV
[January 24, 2025, 02:12:53 pm]
Getting format error load...
by
MISV
[January 24, 2025, 02:07:44 pm]
How C++ class multiple in...
by
Thaddy
[January 24, 2025, 01:39:03 pm]
« previous
next »
Print
Pages: [
1
]
Author
Topic: [SOLVED] Fullscreen (Read 1094 times)
Pe3s
Hero Member
Posts: 590
[SOLVED] Fullscreen
«
on:
September 22, 2023, 12:43:25 pm »
Hello forum members
I came up with code that supports full screen, but does not cover the entire screen. How can I improve the code?
Code: Pascal
[Select]
[+]
[-]
procedure
TForm1
.
Button1Click
(
Sender
:
TObject
)
;
const
Rect
:
TRect
=
(
Left
:
0
;
Top
:
0
;
Right
:
0
;
Bottom
:
0
)
;
FullScreen
:
Boolean
=
False
;
begin
FullScreen
:
=
not
FullScreen
;
If
FullScreen
Then
Begin
Rect
:
=
BoundsRect
;
SetBounds
(
Left
-
ClientOrigin
.
X
,
Top
-
ClientOrigin
.
Y
,
GetDeviceCaps
(
Canvas
.
handle
,
HORZRES
)
+
(
screen
.
Width
-
ClientWidth
)
,
GetDeviceCaps
(
Canvas
.
handle
,
VERTRES
)
+
(
screen
.
Height
-
ClientHeight
)
)
;
SetWindowPos
(
Handle
,
HWND_TOPMOST
,
0
,
0
,
0
,
0
,
SWP_NoMove
or
SWP_NoSize
)
;
End
Else
begin
SetWindowPos
(
Handle
,
HWND_NOTOPMOST
,
0
,
0
,
0
,
0
,
SWP_NoMove
or
SWP_NoSize
)
;
BoundsRect
:
=
Rect
;
end
;
end
;
«
Last Edit: September 23, 2023, 07:32:47 pm by Pe3s
»
Logged
Josh
Hero Member
Posts: 1350
Re: Fullscreen
«
Reply #1 on:
September 22, 2023, 12:50:20 pm »
not tried or tested, but have you seen the wiki
https://wiki.lazarus.freepascal.org/Application_full_screen_mode
Logged
The best way to get accurate information on the forum is to post something wrong and wait for corrections.
Pe3s
Hero Member
Posts: 590
Re: Fullscreen
«
Reply #2 on:
September 22, 2023, 01:19:55 pm »
@Josh, I've read the wiki, the problem is that I can't use WindowState or border style
Logged
Pe3s
Hero Member
Posts: 590
Re: Fullscreen
«
Reply #3 on:
September 23, 2023, 07:32:33 pm »
Thank you
Logged
Print
Pages: [
1
]
« previous
next »
Lazarus
»
Forum
»
Programming
»
LCL
»
[SOLVED] Fullscreen
TinyPortal
© 2005-2018