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
LAMW 0.8.6.3
by
Insid3Code
[
Today
at 01:38:17 am]
syncobjs.TEventObject cla...
by
felleroff
[
Today
at 01:19:34 am]
Online Package Manager
by
dbannon
[
Today
at 12:43:21 am]
Stringgrid check only one...
by
wp
[
Today
at 12:30:35 am]
[Solved]Last page on Grid...
by
bobonwhidbey
[December 09, 2023, 11:58:42 pm]
Inc operator overloading ...
by
TRon
[December 09, 2023, 09:22:22 pm]
ANN: Native X.509, RSA an...
by
WayneSherman
[December 09, 2023, 09:02:04 pm]
likely/unlikely — will it...
by
furious programming
[December 09, 2023, 06:58:03 pm]
Fpcupdeluxe
by
fafafooey
[December 09, 2023, 06:22:39 pm]
Telegram bots API Wrapper
by
Renat.Su
[December 09, 2023, 05:18:43 pm]
Writing error when select...
by
Rbart
[December 09, 2023, 04:55:33 pm]
Convertor PNG to TGA
by
BIT
[December 09, 2023, 03:45:34 pm]
Lazarus Release Candidate...
by
Martin_fr
[December 09, 2023, 03:05:56 pm]
BGRABitmap - showcase -
by
circular
[December 09, 2023, 02:27:53 pm]
LAMW - paintshader sample
by
Mongkey
[December 09, 2023, 02:20:44 pm]
Anyone interested in test...
by
ad1mt
[December 09, 2023, 01:37:36 pm]
RayLib 5.0
by
YiannisKam
[December 09, 2023, 12:44:59 pm]
LAMW jcanvas setfont
by
Mongkey
[December 09, 2023, 12:37:37 pm]
Automatize build system
by
TRon
[December 09, 2023, 12:17:04 pm]
eratosthenes sieve homewo...
by
MathMan
[December 09, 2023, 11:51:27 am]
LAMW - spinner set custom...
by
Mongkey
[December 09, 2023, 11:33:11 am]
TButton's missing caption...
by
lagprogramming
[December 09, 2023, 11:09:53 am]
TWSButton descendance
by
lagprogramming
[December 09, 2023, 11:06:40 am]
how to change color of a ...
by
lainz
[December 09, 2023, 10:14:22 am]
Habari STOMP Clients 2023...
by
mjustin
[December 09, 2023, 10:00:25 am]
« previous
next »
Print
Pages: [
1
]
Author
Topic: [SOLVED] Fullscreen (Read 597 times)
Pe3s
Hero Member
Posts: 528
[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: 1197
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: 528
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: 528
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