假设我想在工作/代码中打开供应商表单。我编写了一个非常简单的选择语句,稍后我想用它来打开该特定供应商的供应商表单。我怎样才能做到这一点?
VendTable vend;
MenuFunction menuFunction;
Args args = new Args();
select vend
where vend.AccountNum like "*0009*";
info(vend.AccountNum); - shows an AccountNum
args.record(VendTable::find(vend.AccountNum));
menuFunction = new MenuFunction(menuitemdisplaystr(VendTable), MenuItemType::Display);
menuFunction.run(args);
供应商表格打开但未设置数据。任何帮助表示赞赏。