Autosort on arrays wrong -> XBROWSE!

Post Reply
User avatar
byte-one
Posts: 1048
Joined: Mon Oct 24, 2005 9:54 am
Location: Austria
Contact:

Autosort on arrays wrong -> XBROWSE!

Post by byte-one »

In the new FWH the XBROWSE-autosort from arrays are with wrong results!
Regards,
Günther
---------------------------------
office@byte-one.com
User avatar
gkuhnert
Posts: 274
Joined: Fri Apr 04, 2008 1:25 pm
Location: Aachen - Germany // Kerkrade - Netherlands
Contact:

Re: Autosort on arrays wrong -> XBROWSE!

Post by gkuhnert »

Günther,

I can confirm that error.
It seems xbrowse hase become a bit buggy. Maybe there is a relation to the other bug I mentioned in http://forums.fivetechsupport.com/viewt ... =3&t=21927
Best Regards,

Gilbert Kuhnert
CTO Software GmbH
http://www.ctosoftware.de
User avatar
byte-one
Posts: 1048
Joined: Mon Oct 24, 2005 9:54 am
Location: Austria
Contact:

Re: Autosort on arrays wrong -> XBROWSE!

Post by byte-one »

..and the sort-arrows in the columns are visible only a short time (during the switch between the sort-order) in some cases.
Regards,
Günther
---------------------------------
office@byte-one.com
User avatar
nageswaragunupudi
Posts: 8017
Joined: Sun Nov 19, 2006 5:22 am
Location: India
Contact:

Re: Autosort on arrays wrong -> XBROWSE!

Post by nageswaragunupudi »

byte-one wrote:In the new FWH the XBROWSE-autosort from arrays are with wrong results!
Thanks for pointing out.

Please replace line no. 10998 in the method SortArrayData() of version 11.06.

For the line

Code: Select all

   if Empty( nAt ) .or. ValType( nAt ) == 'N'
 
please substitute

Code: Select all

   if Empty( nAt ) .or. ValType( nAt ) != 'N'
 
Regards

G. N. Rao.
Hyderabad, India
User avatar
nageswaragunupudi
Posts: 8017
Joined: Sun Nov 19, 2006 5:22 am
Location: India
Contact:

Re: Autosort on arrays wrong -> XBROWSE!

Post by nageswaragunupudi »

byte-one wrote:..and the sort-arrows in the columns are visible only a short time (during the switch between the sort-order) in some cases.
I am not able to reproduce this problem at my end.
Regards

G. N. Rao.
Hyderabad, India
User avatar
byte-one
Posts: 1048
Joined: Mon Oct 24, 2005 9:54 am
Location: Austria
Contact:

Re: Autosort on arrays wrong -> XBROWSE!

Post by byte-one »

..and the sort-arrows in the columns are visible only a short time (during the switch between the sort-order) in some cases
I found, this error only appears when ::bClrHeader is defined. And only in second, third, ... columns!
Regards,
Günther
---------------------------------
office@byte-one.com
Post Reply