I think what you did was to create a handle to the object but you did not create an instance of the object that the handle points to.
Since the class name is xx the handle you created, which is A, would require the following declaration statement:
xx A;
You then need to point the handle to
I have now made a simpel class just to try and use the functionality
in axapta but when i call it from product builder it just says object
xx is not initialized. The example is placed here under:
[Class]
public class xx
{
int x;
int y;
}
[Method]
public void Xmethod(int a, int b)
{
x=a; //Ini
2 matches
Mail list logo