HMG 2.9.3 (Forum Test II)

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

Moderator: Rathinagiri

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

Re: HMG 2.9.3 (Forum Test II)

Post by esgici »

Hola Walter

Please don't worry, you will get used to it soon :)

This is coding style of Roberto : incredibly simple and incredibly efficient :o

Viva HMG, Viva Roberto :!:

Saludos

--

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.9.3 (Forum Test II)

Post by sudip »

esgici wrote:....
This is coding style of Roberto : incredibly simple and incredibly efficient :o
And this is coding style of Esgici also ... :lol:
Hello Master Roberto,
Thank you very much for this excellent software tool :)
With best regards.
Sudip
With best regards,
Sudip
User avatar
Vanguarda
Posts: 543
Joined: Wed Feb 11, 2009 10:56 am
Location: Americana - SP
Contact:

Re: HMG 2.9.3 (Forum Test II)

Post by Vanguarda »

Hi Friends,

Master, I have a Browse Control, and when i delete the first record and try refresh it, the Browse not Refreshing...

See my little source bellow

Code: Select all

Function Def_Excluir()
   if MsgYesNo("Deseja excluir o registro corrente?",cTITLE)      
      DEFINICAO->(DBGoto(Definicao.Browse_1.Value))   
      While(DEFINICAO->(!RLOCK()))      
      enddo
      DEFINICAO->(DBDelete())
      DEFINICAO->(DBUnlock())   
      Definicao.Browse_1.Refresh()      
      MsgInfo("      Concluido!      ",cTITLE)      
   endif
Return Nil  
What´s going on?! where i missed?



With best regards,
--
Paulo Sérgio Durço (Vanguarda)


http://hmglights.wordpress.com/
User avatar
Roberto Lopez
HMG Founder
Posts: 4004
Joined: Wed Jul 30, 2008 6:43 pm

Re: HMG 2.9.3 (Forum Test II)

Post by Roberto Lopez »

Vanguarda wrote:Hi Friends,

Master, I have a Browse Control, and when i delete the first record and try refresh it, the Browse not Refreshing...

See my little source bellow

Code: Select all

Function Def_Excluir()
   if MsgYesNo("Deseja excluir o registro corrente?",cTITLE)      
      DEFINICAO->(DBGoto(Definicao.Browse_1.Value))   
      While(DEFINICAO->(!RLOCK()))      
      enddo
      DEFINICAO->(DBDelete())
      DEFINICAO->(DBUnlock())   
      Definicao.Browse_1.Refresh()      
      MsgInfo("      Concluido!      ",cTITLE)      
   endif
Return Nil  
What´s going on?! where i missed?



With best regards,
Could you be so kind to post a complete sample?

the problem arises only in 2.9.3 forum test?

TIA.

Regards,

Roberto.
Regards/Saludos,

Roberto


(Veritas Filia Temporis)
User avatar
Roberto Lopez
HMG Founder
Posts: 4004
Joined: Wed Jul 30, 2008 6:43 pm

Re: HMG 2.9.3 (Forum Test II)

Post by Roberto Lopez »

Vanguarda wrote: Master, I have a Browse Control, and when i delete the first record and try refresh it, the Browse not Refreshing...
I've created a complete sample and verified.

This is a problem with refresh method.

I'll fix it ASAP.

Thanks for reporting.

Regards,

Roberto.
Regards/Saludos,

Roberto


(Veritas Filia Temporis)
User avatar
Vanguarda
Posts: 543
Joined: Wed Feb 11, 2009 10:56 am
Location: Americana - SP
Contact:

Re: HMG 2.9.3 (Forum Test II)

Post by Vanguarda »

Roberto Lopez wrote:
Vanguarda wrote:Hi Friends,

Master, I have a Browse Control, and when i delete the first record and try refresh it, the Browse not Refreshing...

See my little source bellow

Code: Select all

Function Def_Excluir()
   if MsgYesNo("Deseja excluir o registro corrente?",cTITLE)      
      DEFINICAO->(DBGoto(Definicao.Browse_1.Value))   
      While(DEFINICAO->(!RLOCK()))      
      enddo
      DEFINICAO->(DBDelete())
      DEFINICAO->(DBUnlock())   
      Definicao.Browse_1.Refresh()      
      MsgInfo("      Concluido!      ",cTITLE)      
   endif
Return Nil  
What´s going on?! where i missed?



With best regards,
Could you be so kind to post a complete sample?

the problem arises only in 2.9.3 forum test?

TIA.

Regards,

Roberto.
Hi master,

Sorry my delay for response, i was off-line in here. :oops:

With best regards,
--
Paulo Sérgio Durço (Vanguarda)


http://hmglights.wordpress.com/
Post Reply