HMG 2.8.3 (Forum Test)

HMG announcements; Latest HMG-related news, releases, fixes and updates.

Moderator: Rathinagiri

User avatar
Roberto Lopez
HMG Founder
Posts: 4004
Joined: Wed Jul 30, 2008 6:43 pm

Re: HMG 2.8.3 (Forum Test)

Post by Roberto Lopez »

Roberto Lopez wrote:
It seems not working :)

When you change the selected column with a mouse click, value is not updated correctly, so, the release will be postponed again :(

Regards,

Roberto.
But, when you click in a cell and the change is not seen in the column spinner, if you get the grid value via the menu, it is right, so apparently, value property is working well and the problem is related to spinner update.

Regards,

Roberto.
Regards/Saludos,

Roberto


(Veritas Filia Temporis)
User avatar
esgici
Posts: 4543
Joined: Wed Jul 30, 2008 9:17 pm
DBs Used: DBF
Location: iskenderun / Turkiye
Contact:

Re: HMG 2.8.3 (Forum Test)

Post by esgici »

Roberto Lopez wrote: But, when you click in a cell and the change is not seen in the column spinner, if you get the grid value via the menu, it is right, so apparently, value property is working well and the problem is related to spinner update.

IMHO, because clicking for editing doesn't fire ONCHANGE event.

Regards

--

Esgici
Viva INTERNATIONAL HMG :D
User avatar
fchirico
Posts: 324
Joined: Sat Aug 23, 2008 11:27 pm
Location: Argentina

Re: HMG 2.8.3 (Forum Test)

Post by fchirico »

esgici wrote:Hi Everyone :!:

Where are you :?:

As developers you know best, value and importance of "second hand" testing.

Why you don't participate test works :?:

Ahoy !

Sudip, Luis Vasquez, Mol (Marek), Alex Gustow, CCH, Fernando Chirico, jrendon, Angel Pais :!:

Where are you :?:

Regards

--

Esgici
Español:

Estimado Esgici:

No sé los demás, pero solo hablo por mi.
En estos momentos estoy en mi trabajo, soy empleado y no trabajo de programador, estoy en mi trabajo 10 horas. También tengo otras responsabilidades.
Siempre testeo todo, lo que pasa es que para lograr un buen testeo se necesita dedicarle algún tiempo, para probar todas sus propiedades y eventos.
Por otro lado tampoco comprendo el inglés, y el solo hecho de leer los POST me lleve cuatro veces más de tiempo que al que lo comprende, por eso espero a la noche luego de que mis hijos se duerman para empezar mi trabajo de programador.
Sé que todos ocupan su tiempo personal para dedicarle a HMG, pero creo que cada uno le dedica lo que puede y su vida lo permite.

Los estimo mucho y agradezco el esfuerzo y pasión de cada uno de ustedes.

English: ( by Google )

I do not know the others, but just speaking for me.
At the moment I am at work, I am employed and not work Developer, I am at work 10 hours. I have other responsibilities to.
Always test everything that happens is that for a successful testing is needed to dedicate some time to test all of its properties and events, I hope so at night after my children to fall asleep to begin my work as Developer.
On the other hand does not understand English, and merely read the POST take me four times longer than what you understand.
I know we all take their personal time to devote to HMG, but I think everyone what he can and spends his life allows.

I think a lot and I appreciate the effort and passion of every one of you.

Saludos, Fernando Chirico.
Saludos, Fernando Chirico.
User avatar
Roberto Lopez
HMG Founder
Posts: 4004
Joined: Wed Jul 30, 2008 6:43 pm

Re: HMG 2.8.3 (Forum Test)

Post by Roberto Lopez »

esgici wrote:
Roberto Lopez wrote: But, when you click in a cell and the change is not seen in the column spinner, if you get the grid value via the menu, it is right, so apparently, value property is working well and the problem is related to spinner update.

IMHO, because clicking for editing doesn't fire ONCHANGE event.

Regards

--

Esgici
No it isn't.

The event is fired, but the internal variables holding the new values were updates AFTER the event is called (the problem is in events function).

I've fixed.

Regards,

Roberto.
Regards/Saludos,

Roberto


(Veritas Filia Temporis)
User avatar
esgici
Posts: 4543
Joined: Wed Jul 30, 2008 9:17 pm
DBs Used: DBF
Location: iskenderun / Turkiye
Contact:

Re: HMG 2.8.3 (Forum Test)

Post by esgici »

Roberto Lopez wrote:
The event is fired, but the internal variables holding the new values were updates AFTER the event is called (the problem is in events function).

I've fixed.
This is relaxing, Thanks a lot :D

Best Regards

--

Esgici
Viva INTERNATIONAL HMG :D
User avatar
esgici
Posts: 4543
Joined: Wed Jul 30, 2008 9:17 pm
DBs Used: DBF
Location: iskenderun / Turkiye
Contact:

Re: HMG 2.8.3 (Forum Test)

Post by esgici »

Hola Fernando

Thanks to interest and answering.

You are right; before all, this is a time consuming process and everyone doesn't have always sufficient time.

I don't guess that everyone has dedicated all of his time to HMG. Perhaps our possibilities are different, especially about amount of time for attendance to HMG. But surely all of us has enough time for utilizing it :)

Again, thanks to responding.

Regards

--

Esgici
Viva INTERNATIONAL HMG :D
User avatar
gfilatov
Posts: 1060
Joined: Fri Aug 01, 2008 5:42 am
Location: Ukraine
Contact:

Re: HMG 2.8.3 (Forum Test)

Post by gfilatov »

esgici wrote:
Roberto Lopez wrote: But, when you click in a cell and the change is not seen in the column spinner, if you get the grid value via the menu, it is right, so apparently, value property is working well and the problem is related to spinner update.

IMHO, because clicking for editing doesn't fire ONCHANGE event.

Hello Esgici,

You are right! I've a small fix for this issue in h_windows.prg below:

Code: Select all

...
				* Grid Click ...........................

				If GetNotifyCode ( lParam ) == NM_CLICK  

					IF _HMG_SYSDATA [32] [i] == .T.
						aCellData := _GetGridCellData(i)
                 lChanged := .F.
						IF aCellData [2] <> _HMG_SYSDATA [ 15 ] [i]
//							IF aCellData [1] <> _HMG_SYSDATA [ 39 ] [i]
                        lChanged := .T.
//							ENDIF

						ENDIF

						_HMG_SYSDATA [ 15 ] [i]  := aCellData [2]
						LISTVIEW_REDRAWITEMS ( _HMG_SYSDATA [ 3 ] [i] , _HMG_SYSDATA [ 39 ] [i] - 1 , _HMG_SYSDATA [ 39 ] [i] - 1 )
							IF lChanged == .T.
								_DoControlEventProcedure ( _HMG_SYSDATA [ 12 ] [i] , i )
							ENDIF

					ENDIF

				EndIf
...
Please be so kind to test it :arrow:
Kind Regards,
Grigory Filatov

"Everything should be made as simple as possible, but no simpler." Albert Einstein
User avatar
sudip
Posts: 1454
Joined: Sat Mar 07, 2009 11:52 am
Location: Kolkata, WB, India

Re: HMG 2.8.3 (Forum Test)

Post by sudip »

Hi,

I tested HMG 2.8.3. I found it very useful.

Regarding Esgici's ONCHANGE event problem, Roberto has already fixed the problem.

Roberto,

Thank you very much for this version. I also agree with Rathi about spreadsheet like features in Grid. I shall wait for it.
(I joined just 1 month before, and within this month so much excited things happened to HMG!!!!)

Gregory, I saw your code but I am not sure whether I should change h_windows.prg or not, so I couldn't test it :( (very sorry, I like your code so much)
Esgici wrote:Where are you

As developers you know best, value and importance of "second hand" testing.

Why you don't participate test works

Ahoy !

Sudip, Luis Vasquez, Mol (Marek), Alex Gustow, CCH, Fernando Chirico, jrendon, Angel Pais

Where are you
Here, watching all of your posts whole the day within daily work.!!! But, not sure, being a learner, whether I should also participate in testing or not :)

With best regards to you all.

Sudip
Last edited by sudip on Tue Apr 14, 2009 1:59 pm, edited 2 times in total.
With best regards,
Sudip
User avatar
esgici
Posts: 4543
Joined: Wed Jul 30, 2008 9:17 pm
DBs Used: DBF
Location: iskenderun / Turkiye
Contact:

Re: HMG 2.8.3 (Forum Test)

Post by esgici »

Hello Sudip
sudip wrote: ...not sure, being a learner, whether I should also participate in testing or not :)
Surely YES !

Only a little precaution : Don't be impatient for bug-flag like me :)

Regards

--

Esgici
Viva INTERNATIONAL HMG :D
User avatar
sudip
Posts: 1454
Joined: Sat Mar 07, 2009 11:52 am
Location: Kolkata, WB, India

Re: HMG 2.8.3 (Forum Test)

Post by sudip »

Hi Esgici,
Only a little precaution : Don't be impatient for bug-flag like me
May I differ here!!! A good tester "must" be like you!!! Otherwise main software may have more bugs!!!

With best regards.

Sudip
With best regards,
Sudip
Post Reply