Lazarus
Home
Help
TinyPortal
Search
Login
Register
Lazarus
»
Forum
»
Programming
»
General
»
NiceGrid freezes when resizing column by mouse
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
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
Interesting article about...
by
Joanna from IRC
[
Today
at 02:35:35 am]
Starting a program with h...
by
jeremiah
[
Today
at 02:32:28 am]
Adlib Player
by
Gigatron
[
Today
at 01:57:12 am]
Bug in string concatenati...
by
Avinash
[
Today
at 01:51:00 am]
Is it possible to do git ...
by
Warfley
[
Today
at 12:38:51 am]
MQTT devices for Home Ass...
by
nicolap
[
Today
at 12:37:19 am]
Draw Transparent Fill Rec...
by
lainz
[
Today
at 12:16:54 am]
I have created dll in gol...
by
Packs
[December 11, 2024, 11:14:14 pm]
[Solved] Crosshair error ...
by
wp
[December 11, 2024, 10:39:23 pm]
had a question and found ...
by
Wesbat
[December 11, 2024, 10:30:22 pm]
Adding interfaces to any ...
by
lainz
[December 11, 2024, 10:29:51 pm]
Anyone doing Advent of Co...
by
therealhades
[December 11, 2024, 09:47:15 pm]
2048 game
by
Chronos
[December 11, 2024, 07:40:27 pm]
FPC port to 9front
by
marcov
[December 11, 2024, 07:27:07 pm]
Fatal: (10022) Can't find...
by
emersonline
[December 11, 2024, 07:25:37 pm]
[SOLVED] How to save a Gr...
by
Hartmut
[December 11, 2024, 05:17:16 pm]
Controlled Folder Access
by
Igor Kokarev
[December 11, 2024, 04:12:30 pm]
Serial Port using tvsComP...
by
Dzandaa
[December 11, 2024, 03:44:02 pm]
Stdout from program
by
Gyuri
[December 11, 2024, 03:16:13 pm]
Common File Dialogs Have ...
by
rvk
[December 11, 2024, 01:50:24 pm]
MainMenu: How to use the ...
by
madref
[December 11, 2024, 11:15:54 am]
[Solved!] DBLookupListBox...
by
heebiejeebies
[December 11, 2024, 09:27:03 am]
The Silver Coder on YouTu...
by
silvercoder70
[December 11, 2024, 08:48:41 am]
Random errors in TensorFl...
by
jollytall
[December 11, 2024, 08:29:13 am]
SAVE StringGrid to PDF
by
dseligo
[December 11, 2024, 02:40:40 am]
« previous
next »
Print
Pages: [
1
]
Author
Topic: NiceGrid freezes when resizing column by mouse (Read 959 times)
chrv
Jr. Member
Posts: 68
NiceGrid freezes when resizing column by mouse
«
on:
September 23, 2023, 06:44:11 pm »
Hello everyone,
I'm using a TNiceGrid in my current project.
At runtime, when resizing a NiceGrid column with the mouse, my app freezes. It doesn't happend if changing column width by code.
Is this a known issue?
See attached code
Logged
Win32 Laz 2.0.12 FPC 3.2.0 AND Laz 3.4 FPC 3.2.2
wp
Hero Member
Posts: 12471
Re: NiceGrid freezes when resizing column by mouse
«
Reply #1 on:
September 23, 2023, 07:21:47 pm »
I confirm the issue, never saw it before. It happens in the show/hide scrollbar procedure.
«
Last Edit: September 23, 2023, 07:44:09 pm by wp
»
Logged
wp
Hero Member
Posts: 12471
Re: NiceGrid freezes when resizing column by mouse
«
Reply #2 on:
September 23, 2023, 08:00:35 pm »
In TNiceGrid.Recalculate there are two calls to "SetScrollbar". The hang occurs aways when the provided offset (FHorzOffset, FVertOffset) is 0. The following modification fixes the issue for me:
Code: Pascal
[Select]
[+]
[-]
procedure
TNiceGrid
.
Recalculate
;
...
FHorzOffset
:
=
Max
(
0
,
Min
(
FHorzOffset
,
FMaxHScroll
)
)
;
FVertOffset
:
=
Max
(
0
,
Min
(
FVertOffset
,
FMaxVScroll
)
)
;
if
FHorzOffset <>
0
then
// <--- ADDED
SetScrollBar
(
SB_HORZ
,
FMaxHScroll
,
FHorzOffset
,
SIF_POS
or
SIF_RANGE
)
;
if
FVertOffset <>
0
then
// <--- ADDED
SetScrollBar
(
SB_VERT
,
FMaxVScroll
,
FVertOffset
,
SIF_POS
or
SIF_RANGE
)
;
AllWidth
:
=
Min
(
ClientWidth
,
BodyWidth
+
FixedWidth
)
;
...
Please test, if this has any side-effects.
Logged
jamie
Hero Member
Posts: 6735
Re: NiceGrid freezes when resizing column by mouse
«
Reply #3 on:
September 23, 2023, 08:26:40 pm »
shouldn't the SetScrollbar exit and do nothing on zero offset? I mean if that is a general function, it could cause issues for other code?
«
Last Edit: September 23, 2023, 08:29:05 pm by jamie
»
Logged
The only true wisdom is knowing you know nothing
chrv
Jr. Member
Posts: 68
Re: NiceGrid freezes when resizing column by mouse
«
Reply #4 on:
September 23, 2023, 10:32:07 pm »
@wp : It works for me. THANKS
Logged
Win32 Laz 2.0.12 FPC 3.2.0 AND Laz 3.4 FPC 3.2.2
wp
Hero Member
Posts: 12471
Re: NiceGrid freezes when resizing column by mouse
«
Reply #5 on:
September 23, 2023, 11:12:41 pm »
jamie made me think about it again. I don't know, maybe it's not correct. The issue is that Recalculate calls SetScrollbar and this triggers WMSize for whatever reason I don't understand. And WMSize has Recalculate again in its handler...
I think that most of these Windows-like messages may have been fixes in the early days of Delphi, but now in Lazarus they usually are not required any more and at places they are even harmful. Therefore I tested to remove the WMSize handler and to replace it by the Lazarus counterpart DoOnResize - and now the issue is gone (even without the "if FHorzOffset <> 0").
I also noticed that the mouse wheel is not working and fixed it in the same way (use DoMouseWheel rather than WMMouseWheel). And I tweaked mouse wheel support a bit: normal scrolling now is by 1 row, and when the CTRL key is pressed during scrolling it is by 5 rows.
To get the new version I'd recommend to download the snapshot zip file from
https://sourceforge.net/p/lazarus-ccr/svn/HEAD/tree/components/nicegrid/
(or to use SVN).
Logged
Print
Pages: [
1
]
« previous
next »
Lazarus
»
Forum
»
Programming
»
General
»
NiceGrid freezes when resizing column by mouse
TinyPortal
© 2005-2018