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
IRC channel
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
TPath enhancements (Issue...
by
qubits
[
Today
at 08:44:11 pm]
Lazarus corrupted my enti...
by
Martin_fr
[
Today
at 08:33:45 pm]
Projects written in old F...
by
wp
[
Today
at 08:07:11 pm]
TFileStream.ReadAnsiStrin...
by
Bart
[
Today
at 07:55:38 pm]
Lazarus Install PI5 Bookw...
by
andrew Bubble
[
Today
at 07:47:28 pm]
What is the meaning of TF...
by
Josh
[
Today
at 07:18:15 pm]
Adding an icon to the exe...
by
bobby100
[
Today
at 07:05:22 pm]
Does using TTimer creates...
by
Remy Lebeau
[
Today
at 06:58:48 pm]
How to activate/show/focu...
by
Raumgleiter
[
Today
at 06:07:24 pm]
Does anybody have example...
by
pascalbythree
[
Today
at 06:01:21 pm]
Why cannot this be inline...
by
Edson
[
Today
at 05:27:19 pm]
jwabcrypt unit is missing
by
fpc_2024
[
Today
at 05:18:03 pm]
Anyone interested in test...
by
ad1mt
[
Today
at 05:13:30 pm]
Huge problem with open fi...
by
MarkMLl
[
Today
at 05:11:48 pm]
Get Started / How'to with...
by
circular
[
Today
at 05:08:32 pm]
Diferences in Generics in...
by
marcov
[
Today
at 04:40:27 pm]
GUI for ChatGPT (yarvis)
by
schuler
[
Today
at 04:40:13 pm]
Conscious Artificial Inte...
by
schuler
[
Today
at 04:37:48 pm]
[SOLVED] Simple (I hope) ...
by
SteveSS
[
Today
at 04:37:34 pm]
How to "create" a TFont a...
by
Hartmut
[
Today
at 04:36:13 pm]
Lazarus IDE Windows "stuc...
by
Tony Stone
[
Today
at 04:23:14 pm]
[SOLVED] TPanel slider po...
by
Pe3s
[
Today
at 04:20:03 pm]
Lazarus Release Candidate...
by
furious programming
[
Today
at 03:21:01 pm]
Faster code execution idi...
by
Martin_fr
[
Today
at 03:17:06 pm]
How to override the capti...
by
Joanna
[
Today
at 02:53:57 pm]
« previous
next »
Print
Pages: [
1
]
Author
Topic: [SOLVED] Fullscreen (Read 551 times)
Pe3s
Hero Member
Posts: 513
[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: 1191
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: 513
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: 513
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