I'm new in ax and have a problem
I have a form with diffrent entries (Id, Name etc..) and a Button.
Click on the button will open a new class to calculate.
Now I want to get the current id, form the form to the class.
click Method:
void clicked()
{
NewClass newclass; ; super();
NewClass ::new("Id123");
newclass.method();
}
The string of "id123" should be the current id from the form, i have selected.
If i use select table.. I will get any id, and not the selected. The class have a parm method with a parameter.
*This post is locked for comments
I have the same question (0)