Lazarus
Home
Help
TinyPortal
Search
Login
Register
Lazarus
»
Forum
»
Programming
»
Databases
»
[SOLVED] DBGrid remove red rectangle selection
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
MyDbfStudio - New Admin t...
by
vinceducat
[
Today
at 04:36:35 am]
Examples of third-party p...
by
dbannon
[
Today
at 04:17:18 am]
Synapse ldap - Usage or a...
by
abouchez
[
Today
at 02:00:01 am]
Random crashes on Mac Stu...
by
tygraphics
[
Today
at 01:42:32 am]
JSON count how many array...
by
alvas
[
Today
at 12:19:43 am]
Anyone know how to change...
by
Blaazen
[
Today
at 12:04:53 am]
Opencv version 4.6 C++ AP...
by
avra
[April 01, 2023, 11:55:38 pm]
How to save greek letters...
by
pascal111
[April 01, 2023, 11:42:04 pm]
How to access and set pro...
by
tetrastes
[April 01, 2023, 11:17:46 pm]
Dark Theme in my program?
by
d7_2_laz
[April 01, 2023, 10:21:22 pm]
« previous
next »
Print
Pages: [
1
]
Author
Topic: [SOLVED] DBGrid remove red rectangle selection (Read 454 times)
Pe3s
Sr. Member
Posts: 380
[SOLVED] DBGrid remove red rectangle selection
«
on:
December 06, 2022, 05:58:25 pm »
Hello, is it possible to remove the red rectangle from the active selection?
«
Last Edit: December 08, 2022, 06:56:25 am by Pe3s
»
Logged
Nicole
Hero Member
Posts: 744
Re: DBGrid remove red rectangle selection
«
Reply #1 on:
December 06, 2022, 06:57:51 pm »
yes
write into the event
DBGrid1ColumnCell(Sender: TObject;
const Rect: TRect; DataCol: Integer; Column: TColumn; State: TGridDrawState);
Code: Pascal
[Select]
[+]
[-]
if
(
gdSelected
in
State
)
then
Canvas
.
Font
.
Color
:
=
clBlue
;
«
Last Edit: December 06, 2022, 07:01:01 pm by Nicole
»
Logged
dsiders
Hero Member
Posts: 822
Re: DBGrid remove red rectangle selection
«
Reply #2 on:
December 06, 2022, 09:29:27 pm »
Quote from: Pe3s on December 06, 2022, 05:58:25 pm
Hello, is it possible to remove the red rectangle from the active selection?
The focus rectangle gets drawn when DefaultDrawing is enabled. You can turn DefaultDrawing off and provide you own OnDraw* handlers.
Or you can change FocusColor to a color more pleasing to you.
Logged
Preview Lazarus 2.3.0 documentation at:
https://dsiders.gitlab.io/lazdocsnext
paweld
Hero Member
Posts: 638
Re: DBGrid remove red rectangle selection
«
Reply #3 on:
December 06, 2022, 11:18:20 pm »
https://lazarus-ccr.sourceforge.io/docs/lcl/grids/tcustomgrid.focusrectvisible.html
Code: Pascal
[Select]
[+]
[-]
DBGrid1
.
FocusRectVisible
:
=
Fasle
;
Logged
Best regards / Pozdrawiam
paweld
Pe3s
Sr. Member
Posts: 380
Re: DBGrid remove red rectangle selection
«
Reply #4 on:
December 08, 2022, 06:56:06 am »
Thank you
Logged
Print
Pages: [
1
]
« previous
next »
Lazarus
»
Forum
»
Programming
»
Databases
»
[SOLVED] DBGrid remove red rectangle selection
TinyPortal
© 2005-2018