フォームのデザインのドロップ ダウン コントロールで jumpRef メソッドをオーバーライドしています。以下はそのメソッドのコードです。現在、すべての行が表示されているテーブルのフォームが表示されます。これまでのところ、最初のフォームで選択されていた特定の行が、新しいメイン テーブル フォームで表示されるときに強調表示されるようにしたいと思います。
public void jumpRef()
{
ReasonTable reasonTable;
Args args;
MenuFunction menuFunction;
;
// Use whole table (i.e. No filtering, show all rows)
reasonTable = ReasonTable;
// Establish this form as the caller
args = new Args();
args.caller(element);
// Create a new MenuFunction that launches the Reasons Menu Item
menuFunction = new MenuFunction(
menuitemdisplaystr(Reasons),
MenuItemType::Display);
menuFunction.run(args);
}