ExGRID 1.3... don't post here!
Re: ExGRID 1.0 beta 1
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.
The user manual has been completed.
The completed manual is available here to assist any who might be considering upgrading etc.
Download manual.
Last edited by srod on Wed Jan 27, 2010 1:04 pm, edited 1 time in total.
I may look like a mule, but I'm not a complete ass.
Re: ExGRID 1.0 beta 1
...sounds great! thx#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.
PureBasic for Windows
Re: ExGRID 1.0 beta 1
srod wrote: The user manual has been completed.

Re: ExGRID 1.0 beta 1
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
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
Have you download the chm or the zip with chm?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
See here: http://www.purebasic.fr/english/viewtop ... 63#p311163
Re: ExGRID 1.0 beta 1
Problem solved!ts-soft wrote:Have you download the chm or the zip with chm?
See here: http://www.purebasic.fr/english/viewtop ... 63#p311163
Thanks ts-soft
Re: ExGRID 1.0 beta 2
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.
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.
I may look like a mule, but I'm not a complete ass.
Re: ExGRID 1.0 beta 2
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.
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.
I may look like a mule, but I'm not a complete ass.
Re: ExGRID 1.0
Are you fast or what ? 

"Have you tried turning it off and on again ?"
A little PureBasic review
A little PureBasic review
Re: ExGRID 1.0
A bit of both!luis wrote:Are you fast or what ?

I may look like a mule, but I'm not a complete ass.
Re: ExGRID 1.1
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.
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.
I may look like a mule, but I'm not a complete ass.
Re: ExGRID 1.1
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
Best wishes to the PB community. Thank you for the memories. 
Re: ExGRID 1.1
Thank-you Kuron for the kind words.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
EsGRID has sold so many copies over the years that I think I would be lynched if I stopped updating it.

I have copies of your username/password for the download section if you require a reminder any time.
I may look like a mule, but I'm not a complete ass.
Re: ExGRID 1.1
This:
will not work
Is there another way to do a autoresizing the last column on resizing the window?
Greetings - Thomas
Code: Select all
SendMessage_(Grid\GethWnd(), #LVM_SETCOLUMNWIDTH, Grid\GetNumberOfColumns(), #LVSCW_AUTOSIZE_USEHEADER)

Is there another way to do a autoresizing the last column on resizing the window?
Greetings - Thomas
PureBasic 5.73 | SpiderBasic 2.30 | Windows 10 Pro (x64) | Linux Mint 20.1 (x64)
Old bugs good, new bugs bad! Updates are evil: might fix old bugs and introduce no new ones.

Old bugs good, new bugs bad! Updates are evil: might fix old bugs and introduce no new ones.

Re: ExGRID 1.1
Code: Select all
hWndEsGRID = GetWindow_(Grid\GethWnd(), #GW_CHILD)
SendMessage_(hWndEsGRID, #LVM_SETCOLUMNWIDTH, Grid\GetNumberOfColumns(), #LVSCW_AUTOSIZE_USEHEADER)
I may look like a mule, but I'm not a complete ass.