Page 2 of 3

Re: ExGRID 1.0 beta 1

Posted: Sat Jan 09, 2010 4:32 pm
by srod
9th Jan 2010.

The user manual has been completed.

The completed manual is available here to assist any who might be considering upgrading etc.

Download manual.

Re: ExGRID 1.0 beta 1

Posted: Sat Jan 09, 2010 5:18 pm
by Marco2007
#ExGRID_COMBOBOXSELCHANGED wrote:param
This field contains the index (zero based) of the selected item (as returned by GetGadgetState() etc.) This value could equal -1 in the case that the escape key was used to reset the underlying cell's contents.
...sounds great! thx

Re: ExGRID 1.0 beta 1

Posted: Sat Jan 09, 2010 5:25 pm
by ts-soft
srod wrote: The user manual has been completed.
Imagethank you

Re: ExGRID 1.0 beta 1

Posted: Mon Jan 11, 2010 5:27 pm
by graves
I've downloaded exgrid.chm and it not runs on my computer.
It says "It was canceled to the website navigation" in every page. However, esgrid.chm works correctly.

I'm using Windows 7

Re: ExGRID 1.0 beta 1

Posted: Mon Jan 11, 2010 5:34 pm
by ts-soft
graves wrote:I've downloaded exgrid.chm and it not runs on my computer.
It says "It was canceled to the website navigation" in every page. However, esgrid.chm works correctly.

I'm using Windows 7
Have you download the chm or the zip with chm?
See here: http://www.purebasic.fr/english/viewtop ... 63#p311163

Re: ExGRID 1.0 beta 1

Posted: Mon Jan 11, 2010 5:52 pm
by graves
ts-soft wrote:Have you download the chm or the zip with chm?
See here: http://www.purebasic.fr/english/viewtop ... 63#p311163
Problem solved!
Thanks ts-soft

Re: ExGRID 1.0 beta 2

Posted: Wed Jan 27, 2010 1:04 pm
by srod
27th Jan 2010.

ExGRID 1.0 beta 2 (and EsGRID 2.0.1) is a bug fix release.

Bugs with vertical header text have been fixed and an incompatibility between cell tooltips and Windows 7 has been rectified (thanks to DoubleDutch).

Stephen.

Re: ExGRID 1.0 beta 2

Posted: Sat Apr 03, 2010 12:25 pm
by srod
3rd Apr 2010.

Compatibility release.

The newly released beta version of Purebasic (4.5) required some heavy-duty changes to EsGRID (which of course affects ExGRID).

If using Purebasic 4.4 or 4.5 then please download the new versions of EsGRID and ExGRID. No changes have been made other than to make the grids compatible with Purebasic 4.5.

Stephen.

Re: ExGRID 1.0

Posted: Sat Apr 03, 2010 8:24 pm
by luis
Are you fast or what ? :shock:

Re: ExGRID 1.0

Posted: Sat Apr 03, 2010 8:27 pm
by srod
luis wrote:Are you fast or what ? :shock:
A bit of both! :wink:

Re: ExGRID 1.1

Posted: Thu Apr 29, 2010 7:19 pm
by srod
29th Apr 2010.

ExGRID 1.1 (and EsGRID 2.0.2) is a bug fix release.

A bug in EsGRID (mousewheel scrolling) has been fixed. This bug would only manifest itself in ExGRID programs! Thanks to Kiffi for reporting the bug.

Stephen.

Re: ExGRID 1.1

Posted: Fri Apr 30, 2010 2:58 am
by Kuron
Although I no longer have any idea of what product I actually own or what the correct reg info is for it, I am glad to see these gems still being routinely updated and supported. These are the best of the best

Re: ExGRID 1.1

Posted: Fri Apr 30, 2010 9:37 am
by srod
Kuron wrote:Although I no longer have any idea of what product I actually own or what the correct reg info is for it, I am glad to see these gems still being routinely updated and supported. These are the best of the best
Thank-you Kuron for the kind words.

EsGRID has sold so many copies over the years that I think I would be lynched if I stopped updating it. :wink: Then again, I use the thing myself all of the time anyhow and so it is in my best interests to keep the thing running smoothly.

I have copies of your username/password for the download section if you require a reminder any time.

Re: ExGRID 1.1

Posted: Wed Jan 26, 2011 8:55 pm
by ts-soft
This:

Code: Select all

SendMessage_(Grid\GethWnd(), #LVM_SETCOLUMNWIDTH, Grid\GetNumberOfColumns(), #LVSCW_AUTOSIZE_USEHEADER)
will not work :?
Is there another way to do a autoresizing the last column on resizing the window?

Greetings - Thomas

Re: ExGRID 1.1

Posted: Wed Jan 26, 2011 9:25 pm
by srod

Code: Select all

hWndEsGRID = GetWindow_(Grid\GethWnd(), #GW_CHILD) 
SendMessage_(hWndEsGRID, #LVM_SETCOLUMNWIDTH, Grid\GetNumberOfColumns(), #LVSCW_AUTOSIZE_USEHEADER)