Page 1 of 4

HMG 3.0.33

Posted: Mon May 10, 2010 2:35 am
by Roberto Lopez
- HMG 3.0.33 Changelog:

- Fixed: Grid 'ColumnWhen' property problems. Reported by Claudio.

- Fixed: Grid Problems redrawing horizontal lines in XP (introduced in 3.0.31). Reported by Claudio.

- Fixed: Grid error checking (recordsource workarea must be open at control definition). Reported by Czarny_Pijar

- Fixed: Setting recno property in filtered Grid. Reported by radohabjan.

Download: site

Re: HMG 3.0.33

Posted: Mon May 10, 2010 3:51 am
by Rathinagiri
Thanks a lot Roberto.

Re: HMG 3.0.33

Posted: Mon May 10, 2010 4:32 am
by sudip
Hello Roberto,

Thank you very much for this update :)

Regards.

Sudip

Re: HMG 3.0.33

Posted: Mon May 10, 2010 5:40 am
by mol
THX!
I'm backing to work after my voyages to Egypt. A lot of thinks to do, so I'll test!

Best regards, Marek

Re: HMG 3.0.33

Posted: Mon May 10, 2010 8:43 am
by esgici
Thanks a lot Roberto

Best Regards

--

Esgici

Re: HMG 3.0.33

Posted: Mon May 10, 2010 10:32 am
by Czarny_Pijar
Roberto Lopez wrote:- HMG 3.0.33 Changelog: - Fixed: Grid error checking (recordsource workarea must be open at control definition). Reported by Czarny_Pijar
No no no no, that's not what I've been waiting for. ( However, if we will agree in everything, the discuss will be definitely finihed ;) )
In the current release, from my point of view, one description of the error has been replaced by another.
In case of misunderstanding, let's begin from the start.

1) There's the file c:\hmg\Doc\data\idesample.htm.

2) I followed this path and I've created a wonderful and working program , called IDE_browse_demo. (see attachment no.2)

So far, so good.

3) Then, in the IDE environment, I wanted to replace the obsolete browse with the modern grid, and... I'm struck. (see attachment no.1 for NOT working IDE_grid_demo)

So here's the question: How to achieve the exact funcionality as IDE_browse_demo, using only the IDE and the grid? I'm weak in the theory, but the working example will be highly appreciated.
Roberto Lopez wrote: - Fixed: Setting recno property in filtered Grid. Reported by Czarny_Pijar.
Definitely not me ;)

Re: HMG 3.0.33

Posted: Mon May 10, 2010 12:06 pm
by esgici
Czarny_Pijar wrote: ...that's not what I've been waiting for.
Welcome to naked facts world :)

Here doesn't come true everything we are waiting for ;)

Regards

--

Esgici

Re: HMG 3.0.33

Posted: Mon May 10, 2010 12:11 pm
by Roberto Lopez
Czarny_Pijar wrote:
Roberto Lopez wrote:- HMG 3.0.33 Changelog: - Fixed: Grid error checking (recordsource workarea must be open at control definition). Reported by Czarny_Pijar
No no no no, that's not what I've been waiting for. ( However, if we will agree in everything, the discuss will be definitely finihed ;) )
In the current release, from my point of view, one description of the error has been replaced by another.
In case of misunderstanding, let's begin from the start.
I've analyzed the two samples you've sent me in the following post: viewtopic.php?f=5&t=1413

One of the samples working and the other not.

In the non-working sample, the problem is that the table specified in 'rowsource' property was opened in 'OnInit' window event (AFTER the control creation). Data-bound Grid requires that the tables be open BEFORE control creation.

I've added error checking and a notice in the documentation to INFORM the user about this Grid requirement.
Czarny_Pijar wrote: <...>
3) Then, in the IDE environment, I wanted to replace the obsolete browse with the modern grid, and... I'm struck. (see attachment no.1 for NOT working IDE_grid_demo)
You can continue using obsolete browse instead modern grid. It's your choice :)
Czarny_Pijar wrote:
Roberto Lopez wrote: - Fixed: Setting recno property in filtered Grid. Reported by Czarny_Pijar.
Definitely not me ;)
I'm sorry. I'll correct it.

Re: HMG 3.0.33

Posted: Mon May 10, 2010 12:17 pm
by Roberto Lopez
esgici wrote:
Czarny_Pijar wrote: ...that's not what I've been waiting for.
Welcome to naked facts world :)

Here doesn't come true everything we are waiting for ;)

Regards

--

Esgici
?

Re: HMG 3.0.33

Posted: Mon May 10, 2010 12:27 pm
by Roberto Lopez
Czarny_Pijar wrote: So here's the question: How to achieve the exact funcionality as IDE_browse_demo, using only the IDE and the grid? I'm weak in the theory, but the working example will be highly appreciated.
As I've explained, you must open the table specified in 'RowSource' property BEFORE Grid creation.

Window's 'OnInit' event are executed AFTER control's creation.

Data-bound GRID and BROWSE are DIFFERENT CONTROLS, have some DIFFERENT PROPERTIES that work IN DIFFERENT WAY.

Please, take a look at the following IDE GRID attached sample.