Hi,
I used the Migrator option in SnapDevelop to transalate powerbuilder code to c# but get heaps of errors in the c# code. e.g.
1. every class has base.create(), base.destroy() etc but DataStore does not contain a definition for 'create' or 'destroy'
2. The powerbuilder code loads datawindow blob in datastore using syntax
lds_Getinfo = create n_ds
lds_GetInfo.setFullState(ablb_dwsyntax)
Translated c# code
lds_getinfo = new n_ds(); --n_ds class inherits from DataStore in the translated code
lds_getinfo.setFullState(ablb_dwsyntax);
Error: n_ds does not contain a definition for 'setFullstate'
How to I fix these errors?
Pranoy