Jump to content


Tulip913

Member Since 16 Mar 2006
Offline Last Active Oct 30 2014 03:03 PM
-----

Posts I've Made

In Topic: NextGrid horizontal scrollbar problem

30 October 2014 - 01:54 PM

I also had this nasty behavior but fixed it by editing NxScrollControl.pas:

procedure TNxScrollControl.WMHScroll(var Message: TWMHScroll);
var
nScrollPos: integer; // chg-am
begin
inherited;
if not FHorzScrollBar.Visible then Exit;

.
.
.