Step 1: In Form A Clicked Method
void clicked()
{
super();
Args args = new Args();
;
args.record(TableName);
new MenuFunction(MenuItemDisplayStr(Form B),MenuItemType::Display).run(args);
}
Step 2: In class Declaration you should create a buffer for that particular table
public class FormRun extends ObjectRun
{
Table _tablelocal;
}
Step 3: In Form B init method
public void init()
{
super();
_tablelocal = element.args().record();
void clicked()
{
super();
Args args = new Args();
;
args.record(TableName);
new MenuFunction(MenuItemDisplayStr(Form B),MenuItemType::Display).run(args);
}
Step 2: In class Declaration you should create a buffer for that particular table
public class FormRun extends ObjectRun
{
Table _tablelocal;
}
Step 3: In Form B init method
public void init()
{
super();
_tablelocal = element.args().record();
}
So by using this _tablelocal(Buffer) you can access those values anywhere in the Form B.....
Happy Dazzles..!!
No comments:
Post a Comment