New version of Xs2Ado 5.0.6

This forum is the place to discuss issues related to ReportPro, Xs2Ado, Vo2Ado, bBrowser and other 3rd party products
Post Reply
User avatar
robert
Posts: 4225
Joined: Fri Aug 21, 2015 10:57 am
Location: Netherlands

New version of Xs2Ado 5.0.6

Post by robert »

I have uploaded an installer for Xs2Ado 5.0.6.
This new build fixes an error when a component (such as bBrowser) does a Skip (0) when the server is at EOF.

https://www.xsharp.eu/itm-downloads?fol ... 252Fxs2ado

Robert
XSharp Development Team
The Netherlands
robert@xsharp.eu
stecosta66
Posts: 44
Joined: Mon Sep 26, 2016 12:59 pm

Re: New version of Xs2Adp 5.0.6

Post by stecosta66 »

Hi Robert,

there is any chance to have this fix for VO2Ado too?

thanks!
Stefano
User avatar
robert
Posts: 4225
Joined: Fri Aug 21, 2015 10:57 am
Location: Netherlands

Re: New version of Xs2Adp 5.0.6

Post by robert »

Stefano,
Vo2Ado has not been changed in 8 years. I am not planning to update it.
What you can do is in your subclass of the AdoServer add a skip method like this:

Code: Select all

METHOD Skip(nToSkip) CLASS MyAdoServer
IF nToSkip == 0 .and. SELF:lEof
RETURN FALSE
ENDIF
RETURN SUPER:Skip(nToSkip)
Robert
XSharp Development Team
The Netherlands
robert@xsharp.eu
stecosta66
Posts: 44
Joined: Mon Sep 26, 2016 12:59 pm

Re: New version of Xs2Adp 5.0.6

Post by stecosta66 »

Robert,
thanks a lot!

Stefano
User avatar
Kees Bouw
Posts: 97
Joined: Wed Nov 06, 2019 11:35 am
Location: Netherlands

Re: New version of Xs2Adp 5.0.6

Post by Kees Bouw »

stecosta66 wrote: Mon Feb 19, 2024 5:21 am Hi Robert,

there is any chance to have this fix for VO2Ado too?

thanks!
Stefano
Stefano,

It may be that the problem does not exist in VO2Ado. I have ported an application from VO to X# (using VO2Ado and Xs2Ado) and only the X# version had these specific errors.

Kees.
stecosta66
Posts: 44
Joined: Mon Sep 26, 2016 12:59 pm

Re: New version of Xs2Ado 5.0.6

Post by stecosta66 »

Kees,
I've faced this problem myself with Vo2Ado and bBrowser.
Actually I'm still on VO but planning to switch to X# in the next few months

Stefano
Kees Bouw wrote: Mon Feb 19, 2024 1:57 pm
Stefano,

It may be that the problem does not exist in VO2Ado. I have ported an application from VO to X# (using VO2Ado and Xs2Ado) and only the X# version had these specific errors.

Kees.
Post Reply