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
Using tabs instead of spa...
by
Nadar
[
Today
at 06:01:15 am]
Interesting work on Unive...
by
Blackorzar
[
Today
at 03:55:41 am]
[SOLVED] How to stay in t...
by
egsuh
[
Today
at 03:52:10 am]
LCLVLCPlayer causes 'Exte...
by
Mongkey
[
Today
at 02:39:13 am]
how to change color of a ...
by
Joanna
[
Today
at 02:25:04 am]
regex/and
by
Martin_fr
[
Today
at 02:17:13 am]
inserting text from clipb...
by
Martin_fr
[
Today
at 01:46:40 am]
Chinese input in edit and...
by
myisjwj
[
Today
at 01:28:21 am]
Possible bug with range c...
by
Чебурашка
[
Today
at 01:08:06 am]
Fpcupdeluxe
by
Tony Stone
[
Today
at 12:20:48 am]
BGRABitmap - showcase -
by
circular
[
Today
at 12:09:06 am]
how to debug a CGI from L...
by
Martin_fr
[December 07, 2023, 11:29:31 pm]
eratosthenes sieve homewo...
by
Bart
[December 07, 2023, 10:18:44 pm]
Lazarus 3.9.9 Variable Wa...
by
Martin_fr
[December 07, 2023, 06:37:27 pm]
[SOLVED] SVG thumbnails
by
Pe3s
[December 07, 2023, 05:20:16 pm]
TWSButton descendance
by
zeljko
[December 07, 2023, 05:18:24 pm]
Advance Record operators ...
by
ad1mt
[December 07, 2023, 05:04:43 pm]
Autentication Oracle [wi...
by
CapitaoVirgulinoFerreira
[December 07, 2023, 04:47:08 pm]
Unique Instance Terminate...
by
d7_2_laz
[December 07, 2023, 04:26:01 pm]
[SOLVED] TLabeledEdit.Edi...
by
jipété
[December 07, 2023, 02:08:02 pm]
CORDIC algorithms
by
BlueIcaro
[December 07, 2023, 01:22:51 pm]
[SOLVED] Lazarus png file
by
circular
[December 07, 2023, 12:53:57 pm]
Lazarus Release Candidate...
by
dbannon
[December 07, 2023, 12:04:23 pm]
Automatize build system
by
Чебурашка
[December 07, 2023, 12:00:41 pm]
Small Status Bar Demo
by
Handoko
[December 07, 2023, 11:48:02 am]
« previous
next »
Print
Pages: [
1
]
Author
Topic: [SOLVED] Fullscreen (Read 583 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