Show/Hide Toolbars

Xs2Ado Help

Navigation: Getting Started

Converting from Vo2Ado to Xs2Ado

Scroll Prev Top Next More

Run your app through Transporter

Remove the references that Transporter has added (Vo2Ado_2_8_DLL and Vo2Ado_2_8_X_DLL)   and add references to Xs2Ado.Runtime (for all the 'basic classes') and Xs2Ado.Servers (for the AdoServer class and its subclasses)

In each module of your app Transporter may have added one or both of the following lines:
#USING Vo2Ado_2_8_DLL
#USING Vo2Ado_2_8_X_DLL
You can delete these lines

If your code uses defines from Vo2Ado, then Transporter will have added the following line:
  #include "..\Vo2Ado_2_8_DLL\GlobalDefines.vh"
change that to
       #include "Xs2Ado.vh"
and make sure you include the location of "Xs2Ado.vh" in the "Additional Include Files path" on the Build tab of your application properties

Your app should compile without errors now.