HMG 3.0.20 Final Release
Moderator: Rathinagiri
Re: HMG 3.0.20 Final Release
I think, something is wrong with GRID control when used to browse database.
Try to add and delete some records.
Empty rows appear in grid.
Strange effects when clicking in the grid...
Try to add and delete some records.
Empty rows appear in grid.
Strange effects when clicking in the grid...
- Attachments
-
- etykiety.zip
- (13.04 KiB) Downloaded 247 times
Re: HMG 3.0.20 Final Release
Maravilloso el trabajo que está realizando.
Muy agradecido
Rafael Pérez
Muy agradecido
Rafael Pérez
- Roberto Lopez
- HMG Founder
- Posts: 4023
- Joined: Wed Jul 30, 2008 6:43 pm
Re: HMG 3.0.20 Final Release
Ok.mol wrote:I think, something is wrong with GRID control when used to browse database.
Try to add and delete some records.
Empty rows appear in grid.
Strange effects when clicking in the grid...
I've not documented (I've forgot it) but, at the moment, data-bound grid DOES NOT SUPPORT the use of SET FILTER and SET DELETED commands.
Your sample uses SET DELETED, that is the problem.
Regards/Saludos,
Roberto
(Veritas Filia Temporis)
Roberto
(Veritas Filia Temporis)
Re: HMG 3.0.20 Final Release
Thank You Roberto, this it´s a great versión.Roberto Lopez wrote:Hi All,
Here we are... some months and 19 test releases later, the 3.0(.20) final release is here.
Saludos, Fernando Chirico.
Re: HMG 3.0.20 Final Release
Gracias Roberto. Es impagable tu trabajo.
Un abrazo
Un abrazo
-
ClaudioGalera
- Posts: 47
- Joined: Tue Jul 14, 2009 1:14 pm
- Location: Mar del Plata, Argentina
Re: HMG 3.0.20 Final Release
Thanks Master for this great release 
- Rathinagiri
- Posts: 5481
- Joined: Tue Jul 29, 2008 6:30 pm
- DBs Used: MariaDB, SQLite, SQLCipher and MySQL
- Location: Sivakasi, India
- Contact:
Re: HMG 3.0.20 Final Release
Hi Roberto,
I had used virtual grid in one of my projects today. I am really astonished to see the results. It is amazing! The speed is just unimaginable.
However, I could not use gridprint.
I think I have to modify the gridprint code accordingly.
I had used virtual grid in one of my projects today. I am really astonished to see the results. It is amazing! The speed is just unimaginable.
However, I could not use gridprint.
East or West HMG is the Best.
South or North HMG is worth.
...the possibilities are endless.
South or North HMG is worth.
...the possibilities are endless.
- Roberto Lopez
- HMG Founder
- Posts: 4023
- Joined: Wed Jul 30, 2008 6:43 pm
Re: HMG 3.0.20 Final Release
Ok.rathinagiri wrote:Hi Roberto,
I had used virtual grid in one of my projects today. I am really astonished to see the results. It is amazing! The speed is just unimaginable.
However, I could not use gridprint.I think I have to modify the gridprint code accordingly.
I guess that the problem is how to get the data for a specific cell.
You have some different ways to do it.
The most straight way (if you refer to a grid bound to a table) is as follows:
Code: Select all
GetDataGridCellData ( nControlIndex , lTrueData)Code: Select all
nControlIndex := GetControlIndex ( cControlName , cWindowName) If you want to retrieve the cell content for a non-data-bound grid, you must execute the same procedure as you execute for the OnQueryData procedure but tricking it to pass to it the required logical row and column.
Regards/Saludos,
Roberto
(Veritas Filia Temporis)
Roberto
(Veritas Filia Temporis)
- Rathinagiri
- Posts: 5481
- Joined: Tue Jul 29, 2008 6:30 pm
- DBs Used: MariaDB, SQLite, SQLCipher and MySQL
- Location: Sivakasi, India
- Contact:
Re: HMG 3.0.20 Final Release
Thanks Roberto. This will return the current cell content. I want to go through all the cells one by one in a loop.
East or West HMG is the Best.
South or North HMG is worth.
...the possibilities are endless.
South or North HMG is worth.
...the possibilities are endless.