0
我想讓IlvFileChooser在默認目錄中打開,但找不到任何選項來執行此操作。請有任何想法嗎?Rogue Wave中的默認目錄
IlvFileChooserOptions* opt = new IlvFileChooserOptions(IlvFileChooserOpen);
opt->addFilter("Comma separated files (*.csv)", "csv");
IlvFileChooser* dlg = new IlvFileChooser(SIDGetDisplay(), 0, 0, opt);
if (dlg->get() > 0)
{
...
}