- Pranoy Sinha
- SnapDevelop
- Tuesday, 14 December 2021 10:44 PM UTC
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
Find Questions by Tag
Helpful?
If a reply or comment is helpful for you, please don’t hesitate to click the Helpful button. This action is further confirmation of their invaluable contribution to the Appeon Community.