bug in FW 13.04 xBrowse

Post Reply
User avatar
lucasdebeltran
Posts: 1303
Joined: Tue Jul 21, 2009 8:12 am
Contact:

bug in FW 13.04 xBrowse

Post by lucasdebeltran »

Hello,

In FW 13.04 this code in xBrowse goes to previous row, but it must be on the same row:

Code: Select all | Expand

if MsgYesNo("Want to Add new Record?","New Record in "+cAlias)

   APPEND BLANK
   oBrw:refreshCurrent()
   oBrw:GoLeftMost()

   oBrw:Refresh()
   oBrw:aCols[ 4 ]:Edit()
endif
 



Bad in FW 13.04:
http://tinypic.com/r/314pa4g/5


In previous FW 13.03 it was OK.

Thank you.
Muchas gracias. Many thanks.

Un saludo, Best regards,

Harbour 3.2.0dev, Borland C++ 5.82 y FWH 13.06 [producción]

Implementando MSVC 2010, FWH64 y ADO.

Abandonando uso xHarbour y SQLRDD.
User avatar
nageswaragunupudi
Posts: 10721
Joined: Sun Nov 19, 2006 5:22 am
Location: India
Been thanked: 8 times
Contact:

Re: bug in FW 13.04 xBrowse

Post by nageswaragunupudi »

There is no change in 13.04 and this code is working fine for me here with the new version

Code: Select all | Expand

( oBrw:cAlias )->( DbAppend() )
oBrw:GoLeftMost()
oBrw:Refresh()
oBrw:aCols[ 2 ]:Edit()


I have not used APPEND BLANK to make sure that the append takes place on the alias being browsed.
Regards

G. N. Rao.
Hyderabad, India
User avatar
lucasdebeltran
Posts: 1303
Joined: Tue Jul 21, 2009 8:12 am
Contact:

Re: bug in FW 13.04 xBrowse

Post by lucasdebeltran »

Mr. Nages,

Thank you for reply. It is not working.

Please, tell me your email to send you a full simple.

Thanks.
Muchas gracias. Many thanks.

Un saludo, Best regards,

Harbour 3.2.0dev, Borland C++ 5.82 y FWH 13.06 [producción]

Implementando MSVC 2010, FWH64 y ADO.

Abandonando uso xHarbour y SQLRDD.
User avatar
lucasdebeltran
Posts: 1303
Joined: Tue Jul 21, 2009 8:12 am
Contact:

Re: bug in FW 13.04 xBrowse

Post by lucasdebeltran »

Mr. Nages,

Did you receive my sample test I send to your mail?.

It worked fine with previous versions.

It is quite urgent, thank you.

Best regards,
Muchas gracias. Many thanks.

Un saludo, Best regards,

Harbour 3.2.0dev, Borland C++ 5.82 y FWH 13.06 [producción]

Implementando MSVC 2010, FWH64 y ADO.

Abandonando uso xHarbour y SQLRDD.
User avatar
Antonio Linares
Site Admin
Posts: 42512
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Has thanked: 31 times
Been thanked: 73 times
Contact:

Re: bug in FW 13.04 xBrowse

Post by Antonio Linares »

Lucas,

Please provide a small and self contained example that reproduces what you describe, thanks
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
lucasdebeltran
Posts: 1303
Joined: Tue Jul 21, 2009 8:12 am
Contact:

Re: bug in FW 13.04 xBrowse

Post by lucasdebeltran »

Antonio,

I sent it yesterday. Did you receive it ?.

Thank you.
Muchas gracias. Many thanks.

Un saludo, Best regards,

Harbour 3.2.0dev, Borland C++ 5.82 y FWH 13.06 [producción]

Implementando MSVC 2010, FWH64 y ADO.

Abandonando uso xHarbour y SQLRDD.
User avatar
lucasdebeltran
Posts: 1303
Joined: Tue Jul 21, 2009 8:12 am
Contact:

Re: bug in FW 13.04 xBrowse

Post by lucasdebeltran »

Hello,

Any news please?.

Thanks.
Muchas gracias. Many thanks.

Un saludo, Best regards,

Harbour 3.2.0dev, Borland C++ 5.82 y FWH 13.06 [producción]

Implementando MSVC 2010, FWH64 y ADO.

Abandonando uso xHarbour y SQLRDD.
User avatar
Antonio Linares
Site Admin
Posts: 42512
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Has thanked: 31 times
Been thanked: 73 times
Contact:

Re: bug in FW 13.04 xBrowse

Post by Antonio Linares »

Lucas,

I missed your email and your post, sorry :-(

Have you tried with this change ?

( oBrw:cAlias )->( DbAppend() )
oBrw:GoBottom()
oBrw:RefreshCurrent()
oBrw:GoLeftMost()
oBrw:aCols[ 4 ]:Edit()
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
lucasdebeltran
Posts: 1303
Joined: Tue Jul 21, 2009 8:12 am
Contact:

Re: bug in FW 13.04 xBrowse

Post by lucasdebeltran »

Antonio,

Yes, no luck.

But Mr. Nages is aware of the bug and he is working on it, as he told me by mail some days ago.

Thanks.
Muchas gracias. Many thanks.

Un saludo, Best regards,

Harbour 3.2.0dev, Borland C++ 5.82 y FWH 13.06 [producción]

Implementando MSVC 2010, FWH64 y ADO.

Abandonando uso xHarbour y SQLRDD.
User avatar
nageswaragunupudi
Posts: 10721
Joined: Sun Nov 19, 2006 5:22 am
Location: India
Been thanked: 8 times
Contact:

Re: bug in FW 13.04 xBrowse

Post by nageswaragunupudi »

Since Fixed
Regards

G. N. Rao.
Hyderabad, India
Post Reply