这与我在此处发布的问题有关:
另一位开发人员在创建付款建议时显示的对话框中添加了两个组(CustVendPaymJournal_Vend 类),并且“确定”和“取消”按钮不再显示在较小的分辨率 (1024x768) 上。
为了克服这个问题,我试图在 DialogTabPage 选项卡中对一些对话框元素进行分组。但是,我的尝试没有任何成功。
这就是我在 CustVendCreatePaymJournal_Vend 的 dialog() 方法的前几行代码中的内容
public Object dialog()
{
LedgerJournalType ledgerJournalType;
DialogTabPage tab;
super();
tab = dialog.addTabPage("First tab");
}
在尝试在对话框中添加选项卡的任何地方,我都会不断收到此错误。我也尝试将它放在 CustVendPaymJournal 上(从其中继承了 CustVendPaymJournal_Vend),但无济于事。
DialogTabPage object does not have method 'frameType'.