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
jmpessoa
[
Today
at 06:32:05 am]
Conscious Artificial Inte...
by
schuler
[
Today
at 05:08:28 am]
LAMW - paintshader sample
by
Mongkey
[
Today
at 05:05:40 am]
LAMW - spinner set custom...
by
Mongkey
[
Today
at 05:01:47 am]
how to change color of a ...
by
kwyan
[
Today
at 04:03:05 am]
Battery Operations
by
msintle
[
Today
at 02:07:31 am]
BGRABitmap - showcase -
by
Mongkey
[
Today
at 01:48:13 am]
Automatize build system
by
Чебурашка
[
Today
at 01:15:45 am]
can't determine which ove...
by
jamie
[
Today
at 12:09:45 am]
Stringgrid check only one...
by
jamie
[December 08, 2023, 11:59:19 pm]
likely/unlikely — will it...
by
Laksen
[December 08, 2023, 11:47:34 pm]
Fpcupdeluxe
by
Gustavo 'Gus' Carreno
[December 08, 2023, 11:17:23 pm]
Unique Instance Terminate...
by
d7_2_laz
[December 08, 2023, 11:00:59 pm]
Possible bug with range c...
by
Чебурашка
[December 08, 2023, 11:00:53 pm]
Using tabs instead of spa...
by
Nadar
[December 08, 2023, 09:44:03 pm]
Writing three interrupts ...
by
pascalbythree
[December 08, 2023, 06:37:57 pm]
Online Package Manager
by
lainz
[December 08, 2023, 04:49:48 pm]
Compile loongarch64 appli...
by
myisjwj
[December 08, 2023, 04:47:58 pm]
[SOLVED] Watchlist, order...
by
Hansvb
[December 08, 2023, 02:12:37 pm]
Advance Record operators ...
by
ad1mt
[December 08, 2023, 01:08:55 pm]
TWSButton descendance
by
Martin_fr
[December 08, 2023, 12:58:46 pm]
New version of BGRABitmap
by
circular
[December 08, 2023, 12:05:38 pm]
regex/and
by
Martin_fr
[December 08, 2023, 10:54:49 am]
Interesting work on Unive...
by
MarkMLl
[December 08, 2023, 09:56:59 am]
AI cheetah
by
loaded
[December 08, 2023, 09:26:52 am]
« previous
next »
Print
Pages: [
1
]
Author
Topic: [SOLVED] Fullscreen (Read 590 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: 1196
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